#include <EpetraExt_Transform.h>
Inheritance diagram for EpetraExt::Transform< T, U >:

Typedefs for templated classes | |
| typedef T | OriginalType |
| typedef T * | OriginalTypePtr |
| typedef T & | OriginalTypeRef |
| typedef U | NewType |
| typedef U * | NewTypePtr |
| typedef U & | NewTypeRef |
Pure Virtual Methods which must be implemented by subclasses | |
| virtual NewTypeRef | operator() (OriginalTypeRef orig)=0 |
| Analysis of transform operation on original object and construction of new object. | |
| virtual bool | fwd ()=0 |
Forward transfer of data from orig object input in the operator() method call to the new object created in this same call. | |
| virtual bool | rvs ()=0 |
Reverse transfer of data from new object created in the operator() method call to the orig object input to this same method. | |
Virtual functions with default implements allowing for optional | |
| implementation by the Transform developer | |
| 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. | |
Public Member Functions | |
| virtual | ~Transform () |
Protected Member Functions | |
| Transform () | |
| Default constructor, protected to allow only derived classes to use. | |
Protected Attributes | |
| OriginalTypePtr | origObj_ |
| NewTypePtr | newObj_ |
This is the abstract definition for all Epetra Transform Operators. Depending on the type of Transform, several specializations are available: Structural, SameType, InPlace, View.
Definition at line 49 of file EpetraExt_Transform.h.
|
|||||
|
Definition at line 56 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 57 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 58 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 60 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 61 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 62 of file EpetraExt_Transform.h. |
|
|||||||||
|
Definition at line 67 of file EpetraExt_Transform.h. |
|
|||||||||
|
Default constructor, protected to allow only derived classes to use.
Initializes attributes Definition at line 194 of file EpetraExt_Transform.h. |
|
||||||||||
|
|||||||||
|
|||||||||
|
||||||||||
|
Initial analysis phase of transform.
Returns Preconditions: Invariants: Postconditions:
The default implementation calls method Definition at line 219 of file EpetraExt_Transform.h. |
|
|||||||||
|
Construction of new object as a result of the transform. Preconditions: Invariants: Postconditions:
The default implementation returns internal attribute Reimplemented in EpetraExt::LinearProblem_CrsSingletonFilter. Definition at line 229 of file EpetraExt_Transform.h. |
|
|||||||||
|
Check for whether transformed object has been constructed. Preconditions: Invariants: Postconditions:
The default implementation returns Definition at line 237 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 199 of file EpetraExt_Transform.h. |
|
|||||
|
Definition at line 201 of file EpetraExt_Transform.h. |
1.3.9.1