|
| BlockVector (localIndex const nBlocks) |
| Create a vector of nBlocks blocks. More...
|
|
| BlockVector () |
| Create a vector of nBlocks blocks.
|
|
| BlockVector (BlockVector const &rhs) |
| Copy constructor that performs a deep copy of each sub-vector. More...
|
|
| BlockVector (BlockVector &&rhs) |
| Move constructor. More...
|
|
| BlockVector (BlockVectorView< VECTOR > const &rhs) |
| Conversion constructor from a compatible view with a deep copy of each sub-vector. More...
|
|
BlockVector & | operator= (BlockVector const &x) |
| Copy assignment. More...
|
|
BlockVector & | operator= (BlockVector &&x) noexcept |
| Move assignment. More...
|
|
virtual | ~BlockVector () override=default |
| Destructor.
|
|
void | resize (localIndex const nBlocks) |
| Resize to a different number of blocks. More...
|
|
BlockVectorView & | operator= (BlockVectorView const &rhs)=delete |
| Deleted copy assignment. More...
|
|
BlockVectorView & | operator= (BlockVectorView &&rhs) noexcept=delete |
| Deleted move assignment. More...
|
|
virtual | ~BlockVectorView ()=default |
| Destructor.
|
|
void | copy (BlockVectorView const &src) |
| Update vector y as y = x . More...
|
|
void | scale (real64 const factor) |
| Scale the block vector with factor . More...
|
|
void | zero () |
| Set the vector to zero.
|
|
void | rand (unsigned const seed) |
| Set vector elements to random entries. More...
|
|
real64 | dot (BlockVectorView const &x) const |
| Dot product. More...
|
|
real64 | norm2 () const |
| 2-norm of the block vector. More...
|
|
real64 | normInf () const |
| Inf-norm of the block vector. More...
|
|
void | axpy (real64 const alpha, BlockVectorView const &x) |
| Update vector y as y = alpha*x + y . More...
|
|
void | axpby (real64 const alpha, BlockVectorView const &x, real64 const beta) |
| Update vector y as y = alpha*x + beta*y . More...
|
|
localIndex | blockSize () const |
| Get block size. More...
|
|
globalIndex | globalSize () const |
| Get global size. More...
|
|
localIndex | localSize () const |
| Get local size. More...
|
|
void | print (std::ostream &os=std::cout) const |
| Print the block vector. More...
|
|
VECTOR const & | block (localIndex const blockIndex) const |
| Get a reference to the vector corresponding to block blockRowIndex . More...
|
|
VECTOR & | block (localIndex const blockIndex) |
| Get a reference to the vector corresponding to block blockRowIndex . More...
|
|
VECTOR const & | operator() (localIndex const blockIndex) const |
| Get a reference to the vector corresponding to block blockRowIndex . More...
|
|
VECTOR & | operator() (localIndex const blockIndex) |
| Get a reference to the vector corresponding to block blockRowIndex . More...
|
|