Sparse Matrix implementation stub object when OpenFPM is compiled with no linear algebra support. More...
Sparse Matrix implementation stub object when OpenFPM is compiled with no linear algebra support.
Definition at line 39 of file Vector.hpp.
#include <Vector.hpp>
Public Member Functions | |
Vector (const Vector< T > &v) | |
stub copy constructor | |
Vector (Vector< T > &&v) | |
stub copy constructor | |
Vector (size_t n) | |
stub constructor from number of rows | |
Vector () | |
stub default constructor | |
Vector (size_t n, size_t n_row_local) | |
stub constructor | |
void | resize (size_t row, size_t row_n) |
stub resize | |
void | insert (size_t i, T val) |
stub insert | |
T & | insert (size_t i) |
stub insert | |
const T & | insert (size_t i) const |
stub insert | |
const T & | operator() (size_t i) const |
stub | |
T & | operator() (size_t i) |
stub | |
void | scatter () |
scatter | |
void | fromFile (std::string file) |
fromFile | |
Vector< T > & | operator= (const Vector< T > &v) |
stub operator= | |
Vector< T > & | operator= (Vector< T > &&v) |
stub operator= | |
int & | getVec () |
stub getVec | |
Private Attributes | |
T | stub |
stub | |
int | stub_i |
stub | |
|
inline |
stub default constructor
Definition at line 77 of file Vector.hpp.
|
inline |
stub constructor
n | global number of row |
n_row_local | local number of rows |
Definition at line 87 of file Vector.hpp.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
scatter
Definition at line 144 of file Vector.hpp.
|
private |
stub
Definition at line 42 of file Vector.hpp.
|
private |
stub
Definition at line 45 of file Vector.hpp.