#include <fei_VectorTraits_LinProbMgr.hpp>
|
| static const char * | typeName () |
| |
| static int | setValues (fei::LinearProblemManager *vec, int firstLocalOffset, double scalar, bool isSolnVector=false) |
| |
| static int | putValuesIn (fei::LinearProblemManager *vec, int firstLocalOffset, int numValues, const int *indices, const double *values, bool sum_into, bool isSolnVector=false, int vectorIndex=0) |
| |
| static int | copyOut (fei::LinearProblemManager *vec, int firstLocalOffset, int numValues, const int *indices, double *values, bool isSolnVector=false, int vectorIndex=0) |
| |
| static int | globalAssemble (fei::LinearProblemManager *vec) |
| |
| static int | update (fei::LinearProblemManager *vec, double a, const fei::LinearProblemManager *x, double b) |
| |
| static const char * | typeName () |
| |
| static int | setValues (fei::LinearProblemManager *vec, int firstLocalOffset, double scalar, bool isSolnVector=false) |
| |
| static int | putValuesIn (fei::LinearProblemManager *vec, int firstLocalOffset, int numValues, const int *indices, const double *values, bool sum_into, bool isSolnVector=false, int vectorIndex=0) |
| |
| static int | copyOut (fei::LinearProblemManager *vec, int firstLocalOffset, int numValues, const int *indices, double *values, bool isSolnVector=false, int vectorIndex=0) |
| |
| static double * | getLocalCoefsPtr (fei::LinearProblemManager *vec, bool isSolnVector=false, int vectorIndex=0) |
| |
| static int | update (fei::LinearProblemManager *vec, double a, const fei::LinearProblemManager *x, double b) |
| |
| static int | globalAssemble (fei::LinearProblemManager *vec) |
| |
This struct specialization defines vector traits for LinearProblemManager vector representations.
Definition at line 22 of file fei_VectorTraits_LinProbMgr.hpp.
◆ typeName() [1/2]
◆ setValues() [1/2]
◆ putValuesIn() [1/2]
◆ copyOut() [1/2]
◆ globalAssemble() [1/2]
◆ update() [1/2]
◆ typeName() [2/2]
Return a string type-name for the underlying vector. May appear in debug-output logs, etc. Does not need to exactly correspond to the type, but should be descriptive.
◆ setValues() [2/2]
Set a specified scalar value throughout the vector.
◆ putValuesIn() [2/2]
Put values into the vector. If the 'sum_into' argument is true, then values are added to any values that already exist at the specified indices. If the 'sum_into' argument is false, then incoming values will overwrite any that may already exist at the specified indices. See general comments at the top of this struct regarding the 'isSolnVector' argument.
◆ copyOut() [2/2]
Copy values for the specified indices out into the user-allocated array 'values'.
◆ getLocalCoefsPtr()
Get a pointer to the vector object's local coefficients array. Vector objects that can't support this can return NULL.
◆ update() [2/2]
◆ globalAssemble() [2/2]
Perform global communication or whatever operations may be necessary to complete the assembly of the vector. Most vector objects will do nothing here. Vectors such as the Epetra_FEVector object may do some operations here.
The documentation for this struct was generated from the following file: