#include <dim.h>
Inheritance diagram for SCBlockInfo
Public Methods | |
SCBlockInfo (int n, int nblocks=0, const int *blocksizes=0) | |
Create a SCBlockInfo object. | |
SCBlockInfo (StateIn &) | |
SCBlockInfo (const Ref< KeyVal > &keyval) | |
The KeyVal constructor. More... | |
~SCBlockInfo () | |
void | save_data_state (StateOut &) |
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR initializes them. More... | |
int | equiv (SCBlockInfo *bi) |
Return nonzero if this is equivalent to bi. | |
int | nelem () const |
Return the total number of elements. | |
int | nblock () const |
Return the number of blocks. | |
int | start (int i) const |
Return the starting index for block i. | |
int | size (int i) const |
Return the size of block i. | |
int | fence (int i) const |
Return the last index + 1 for block i. | |
void | elem_to_block (int i, int &block, int &offset) |
RefSCDimension | subdim (int i) |
Retreive subdimension information. | |
void | set_subdim (int i, const RefSCDimension &dim) |
Set subdimension information. More... | |
void | print (std::ostream &o=ExEnv::out()) const |
Print the object to the stream o. | |
Protected Methods | |
void | init_start () |
Protected Attributes | |
int | n_ |
int | nblocks_ |
int* | start_ |
int* | size_ |
RefSCDimension* | subdims_ |
There are really two ways that it can contain blocking information. In the first way, a vector of block offsets and block sizes is stored. The second method is only used by those specializations created by the BlockedSCMatrixKit class. In this method the blocking information is stored as subdimensions of type SCDimension. If both methods are used, they must be used consistently. That is, the number, sizes, and order of the blocks must match the number, sizes, and order of the SCDimension objects.
|
The KeyVal constructor.
|
|
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR initializes them. This must be implemented by the derived class if the class has data. Reimplemented from SavableState. |
|
Set subdimension information. The dimension dim and index i must be consistent with the nblocks and blocksizes information given to the constructor. |