|
|
| SCMatrixLTriSubBlock (int is, int ie, int js, int je, double *data) |
| |
|
| SCMatrixLTriSubBlock (StateIn &) |
| |
| 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.
|
| |
| void | process (SCElementOp *) |
| |
| void | process (SCElementOp2 *, SCMatrixBlock *) |
| |
| void | process (SCElementOp3 *, SCMatrixBlock *, SCMatrixBlock *) |
| |
|
| SCMatrixBlock (StateIn &s) |
| |
| virtual SCMatrixBlock * | deepcopy () const |
| | Return of copy of this.
|
| |
| virtual double * | dat () |
| | Return a pointer to the block's data and the number of elements in the block.
|
| |
|
virtual int | ndat () const |
| |
|
SavableState & | operator= (const SavableState &) |
| |
| void | save_state (StateOut &) |
| | Save the state of the object as specified by the StateOut object.
|
| |
| void | save_object_state (StateOut &) |
| | This can be used for saving state when the exact type of the object is known for both the save and the restore.
|
| |
| virtual void | save_vbase_state (StateOut &) |
| | Save the virtual bases for the object.
|
| |
|
| DescribedClass (const DescribedClass &) |
| |
|
DescribedClass & | operator= (const DescribedClass &) |
| |
| ClassDesc * | class_desc () const MPQC__NOEXCEPT |
| | This returns the unique pointer to the ClassDesc corresponding to the given type_info object.
|
| |
|
const char * | class_name () const |
| | Return the name of the object's exact type.
|
| |
|
int | class_version () const |
| | Return the version of the class.
|
| |
| virtual void | print (std::ostream &=ExEnv::out0()) const |
| | Print the object.
|
| |
| Ref< DescribedClass > | ref () |
| | Return this object wrapped up in a Ref smart pointer.
|
| |
| size_t | identifier () const |
| | Return the unique identifier for this object that can be compared for different objects of different types.
|
| |
|
int | lock_ptr () const |
| | Lock this object.
|
| |
|
int | unlock_ptr () const |
| | Unlock this object.
|
| |
|
void | use_locks (bool inVal) |
| | start and stop using locks on this object
|
| |
|
refcount_t | nreference () const |
| | Return the reference count.
|
| |
|
refcount_t | reference () |
| | Increment the reference count and return the new count.
|
| |
|
refcount_t | dereference () |
| | Decrement the reference count and return the new count.
|
| |
|
int | managed () const |
| | Return 1 if the object is managed. Otherwise return 0.
|
| |
The SCMatrixLTriSubBlock describes a triangular subblock of a matrix.
The following bit of code illustrates the data layout: fill(double **matrix, SCMatrixLTriSubBlock &b) { int offset=(b.istart*(b.istart+1)>>1) + b.jstart; for (int i=b.start; i<b.end; i++) { for (int j=b.start; j<=i && j<b.jend; j++,offset++) { matrix[i][j] = b.data[offset]; } if (j>i) offset += b.istart; else offset += i + b.jstart - b.jend; } }