00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #ifndef __Teko_ReorderedMappingStrategy_hpp__
00048 #define __Teko_ReorderedMappingStrategy_hpp__
00049
00050
00051 #include <vector>
00052
00053
00054 #include "Teuchos_RCP.hpp"
00055
00056
00057 #include "Thyra_MultiVectorBase.hpp"
00058 #include "Thyra_LinearOpBase.hpp"
00059
00060
00061 #include "Epetra_Comm.h"
00062 #include "Epetra_Map.h"
00063 #include "Epetra_MultiVector.h"
00064 #include "Epetra_Import.h"
00065 #include "Epetra_Export.h"
00066 #include "Epetra_CrsMatrix.h"
00067
00068
00069 #include "Teko_BlockedReordering.hpp"
00070 #include "Teko_EpetraOperatorWrapper.hpp"
00071
00072 namespace Teko {
00073 namespace Epetra {
00074
00075 class ReorderedMappingStrategy : public MappingStrategy {
00076 public:
00078
00079
00087 ReorderedMappingStrategy(const BlockReorderManager & brm,const Teuchos::RCP<const MappingStrategy> & map);
00089
00091
00092
00100 virtual void copyEpetraIntoThyra(const Epetra_MultiVector& epetra_X,
00101 const Teuchos::Ptr<Thyra::MultiVectorBase<double> > & thyra_X) const;
00102
00110 virtual void copyThyraIntoEpetra(const Teuchos::RCP<const Thyra::MultiVectorBase<double> > & thyra_Y,
00111 Epetra_MultiVector& epetra_Y) const;
00112
00120 virtual const Teuchos::RCP<const Epetra_Map> domainMap() const
00121 { return domainMap_; }
00122
00130 virtual const Teuchos::RCP<const Epetra_Map> rangeMap() const
00131 { return rangeMap_; }
00132
00137 virtual std::string toString() const
00138 { return std::string("ReorderedMappingStrategy"); }
00139
00141
00143 virtual RCP<const MappingStrategy> GetPrimaryMapStrategy() const
00144 { return mapStrategy_; }
00145
00146 protected:
00147
00148
00150
00151 Teuchos::RCP<const Epetra_Map> domainMap_;
00152 Teuchos::RCP<const Epetra_Map> rangeMap_;
00154
00156
00157 const BlockReorderManager reorderManager_;
00158 RCP<const MappingStrategy> mapStrategy_;
00160 };
00161
00162 }
00163 }
00164
00165 #endif