#include <ReductionMgr.h>
Public Member Functions | |
| ReductionSetData (int seqNum, int size) | |
| ~ReductionSetData () | |
Public Attributes | |
| int | sequenceNumber |
| int | submitsRecorded |
| BigReal * | data |
| ReductionSetData * | next |
|
||||||||||||
|
Definition at line 173 of file ReductionMgr.h. References BigReal. 00173 {
00174 sequenceNumber = seqNum;
00175 submitsRecorded = 0;
00176 data = new BigReal[size];
00177 for ( int i = 0; i < size; ++i ) { data[i] = 0; }
00178 next = 0;
00179 }
|
|
|
Definition at line 180 of file ReductionMgr.h. 00180 {
00181 delete [] data;
00182 }
|
|
|
Definition at line 171 of file ReductionMgr.h. Referenced by ReductionMgr::remoteSubmit(), and ReductionMgr::willSubmit(). |
|
|
Definition at line 172 of file ReductionMgr.h. Referenced by ReductionSet::removeData(), and ReductionSet::~ReductionSet(). |
|
|
Definition at line 169 of file ReductionMgr.h. |
|
|
Definition at line 170 of file ReductionMgr.h. Referenced by ReductionMgr::remoteRegister(), ReductionMgr::remoteSubmit(), ReductionMgr::remoteUnregister(), ReductionMgr::willRequire(), and ReductionMgr::willSubmit(). |
1.3.9.1