EpetraExt Package Browser (Single Doxygen Collection) Development
|
#include <EpetraExt_Permutation.h>
Public Member Functions | |
Permutation (Epetra_DataAccess CV, const Epetra_BlockMap &map, int *permutation) | |
Constructor. | |
Permutation (const Epetra_BlockMap &map) | |
Constructor. | |
Permutation (const Permutation< T > &src) | |
Copy Constructor. | |
![]() | |
TPermutation (Epetra_DataAccess CV, const Epetra_BlockMap &map, int *permutation) | |
Constructor. | |
TPermutation (const Epetra_BlockMap &map) | |
Constructor. | |
TPermutation (const TPermutation< T, int > &src) | |
Copy Constructor. | |
virtual | ~TPermutation () |
Destructor. | |
OutputRef | operator() (InputRef orig) |
This method creates a new object which is a permuted copy of the input argument. | |
OutputRef | operator() (InputRef orig, bool column_permutation) |
This method creates a new object which is a permuted copy of the input argument. | |
![]() | |
bool | fwd () |
Forward transfer of data from orig object input in the operator() method call to the new object created in this same call. | |
bool | rvs () |
Reverse transfer of data from new object created in the operator() method call to the orig object input to this same method. | |
virtual | ~StructuralSameTypeTransform () |
![]() | |
virtual | ~SameTypeTransform () |
![]() | |
virtual | ~Transform () |
virtual bool | analyze (OriginalTypeRef orig) |
Initial analysis phase of transform. | |
virtual NewTypeRef | construct () |
Construction of new object as a result of the transform. | |
virtual bool | isConstructed () |
Check for whether transformed object has been constructed. | |
Additional Inherited Members | |
![]() | |
typedef EpetraExt::SameTypeTransform< T >::TransformTypeRef | OutputRef |
typedef EpetraExt::SameTypeTransform< T >::TransformTypeRef | InputRef |
typedef EpetraExt::SameTypeTransform< T >::TransformTypePtr | OutputPtr |
typedef EpetraExt::SameTypeTransform< T >::TransformTypePtr | InputPtr |
![]() | |
typedef T | TransformType |
typedef T * | TransformTypePtr |
typedef T & | TransformTypeRef |
![]() | |
typedef T | OriginalType |
typedef T * | OriginalTypePtr |
typedef Teuchos::RCP< T > | OriginalTypeRCP |
typedef T & | OriginalTypeRef |
typedef T | NewType |
typedef T * | NewTypePtr |
typedef Teuchos::RCP< T > | NewTypeRCP |
typedef T & | NewTypeRef |
![]() | |
Transform () | |
Default constructor, protected to allow only derived classes to use. | |
![]() | |
OriginalTypePtr | origObj_ |
NewTypePtr | newObj_ |
Definition at line 204 of file EpetraExt_Permutation.h.
|
inline |
Constructor.
CV | Set to either Copy or View. |
map | Defines the index space to be permuted. |
permutation | Array defining the permutation. The length of this array must be 'map.NumMyElements()'. This array is the local portion of the 'p' vector described in the 'Detailed Description' section. |
Definition at line 217 of file EpetraExt_Permutation.h.
|
inline |
Constructor.
This constructor creates an empty permutation object. The contents must then be set using regular Epetra_IntVector methods.
map | Defines the index space to be permuted. |
Definition at line 229 of file EpetraExt_Permutation.h.
|
inline |
Copy Constructor.
Definition at line 235 of file EpetraExt_Permutation.h.