EpetraExt
Development
|
Define some traits to make it easier to deal with template-parameters which are objects to be permuted. More...
#include <EpetraExt_Permutation_impl.h>
Static Public Member Functions | |
static const char * | typeName () |
return a std::string name for the object type More... | |
static T * | clone (T *example, Epetra_DataAccess CV, const Epetra_BlockMap &map, int int_argument) |
clone function accepts an example of the object being cloned, and enough constructor arguments to be able to create any of these: CrsMatrix, CrsGraph, Vector, MultiVector. More... | |
static void | replaceMap (T *obj, const Epetra_BlockMap &map) |
replace the object's row-map (or if it's not a matrix, replace its only map) More... | |
template<typename int_type > | |
static T * | produceColumnPermutation (TPermutation< T, int_type > *perm, T *srcObj) |
return new object, which is a column-permutation of srcObj More... | |
Define some traits to make it easier to deal with template-parameters which are objects to be permuted.
Given a template parameter, we'll want to have the following operations available:
First the default definition, which catches all types "T", followed by some specializations for anticipated types. Any type other than the types specifically anticipated will be handled by this default definition, allowing the Permutation class to abort or return NULL where appropriate.
We define these trait structs in this file rather than in a separate file in an attempt to avoid some template-instantiation complications...
Definition at line 77 of file EpetraExt_Permutation_impl.h.
|
inlinestatic |
return a std::string name for the object type
Definition at line 79 of file EpetraExt_Permutation_impl.h.
|
inlinestatic |
clone function accepts an example of the object being cloned, and enough constructor arguments to be able to create any of these: CrsMatrix, CrsGraph, Vector, MultiVector.
And probably more later...
Why is an example object needed? For instance, if a MultiVector is created, we may want to know how many vectors it should contain...
Definition at line 89 of file EpetraExt_Permutation_impl.h.
|
inlinestatic |
replace the object's row-map (or if it's not a matrix, replace its only map)
Definition at line 98 of file EpetraExt_Permutation_impl.h.
|
inlinestatic |
return new object, which is a column-permutation of srcObj
Definition at line 104 of file EpetraExt_Permutation_impl.h.