![]() |
Dendro
5.01
Dendro in Greek language means tree. The Dendro library is a large scale (262K cores on ORNL's Titan) distributed memory adaptive octree framework. The main goal of Dendro is to perform large scale multiphysics simulations efficeiently in mordern supercomputers. Dendro consists of efficient parallel data structures and algorithms to perform variational ( finite element) methods and finite difference mthods on 2:1 balanced arbitary adaptive octrees which enables the users to perform simulations raning from black holes (binary black hole mergers) to blood flow in human body, where applications ranging from relativity, astrophysics to biomedical engineering.
|
Public Member Functions | |
MatRecord () | |
The default constructor. | |
unsigned int | getRowID () const |
returns the row ID | |
unsigned int | getColID () const |
returns the col ID | |
unsigned int | getRowDim () const |
return the row dof | |
unsigned int | getColDim () const |
return the col dof | |
void | setRowID (unsigned int rowID) |
sets the rowID value | |
void | setColID (unsigned int colID) |
sets the rowID value | |
void | setRowDim (unsigned int rowDim) |
sets the rowDim value | |
void | setColDim (unsigned int colDim) |
sets the colDim value | |
MatRecord (unsigned int rowID, unsigned int colID, unsigned int rowDim, unsigned int colDim, DendroScalar value) | |
DendroScalar | getMatVal () const |
returns the entry value | |
void | setMatValue (DendroScalar value) |
sets matrix value | |
MatRecord (const MatRecord &other) | |
The copy constructor. | |
MatRecord & | operator= (MatRecord const &other) |
The assignment operator. | |
bool | operator== (MatRecord const &other) const |
Overloaded == Operator. | |
bool | operator!= (MatRecord const &other) const |
Overloaded != Operator. | |
bool | operator< (MatRecord const &other) const |
Overloaded < Operator. | |
bool | operator> (MatRecord const &other) const |
Overloaded > Operator. | |
bool | operator<= (MatRecord const &other) const |
Overloaded <= Operator. | |
bool | operator>= (MatRecord const &other) const |
Overloaded >= Operator. | |
Friends | |
std::ostream & | operator<< (std::ostream &os, MatRecord const &re) |
|
inline |
MatRecord constructor
[in] | rowID | row id |
[in] | colID | col id |
[in] | rowDim | row dim |
[in] | colDim | colDim |
[in] | value | value of for the entry. |