#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 179 of file ReductionMgr.h. References BigReal. 00179 {
00180 sequenceNumber = seqNum;
00181 submitsRecorded = 0;
00182 data = new BigReal[size];
00183 for ( int i = 0; i < size; ++i ) { data[i] = 0; }
00184 next = 0;
00185 }
|
|
|
Definition at line 186 of file ReductionMgr.h. 00186 {
00187 delete [] data;
00188 }
|
|
|
Definition at line 177 of file ReductionMgr.h. Referenced by ReductionMgr::remoteSubmit(), and ReductionMgr::willSubmit(). |
|
|
Definition at line 178 of file ReductionMgr.h. Referenced by ReductionSet::removeData(), and ReductionSet::~ReductionSet(). |
|
|
Definition at line 175 of file ReductionMgr.h. |
|
|
Definition at line 176 of file ReductionMgr.h. Referenced by ReductionMgr::remoteRegister(), ReductionMgr::remoteSubmit(), ReductionMgr::remoteUnregister(), ReductionMgr::willRequire(), and ReductionMgr::willSubmit(). |
1.3.9.1