Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef ALBANY_SOLUTIONCULLINGSTRATEGY_HPP
00008 #define ALBANY_SOLUTIONCULLINGSTRATEGY_HPP
00009
00010 #include "Teuchos_Array.hpp"
00011 #include "Teuchos_RCP.hpp"
00012 #include "Teuchos_ParameterList.hpp"
00013
00014 class Epetra_BlockMap;
00015
00016 namespace Albany {
00017
00018 class SolutionCullingStrategyBase {
00019 public:
00020 virtual void setup() {}
00021
00022 virtual Teuchos::Array<int> selectedGIDs(const Epetra_BlockMap &sourceMap) const = 0;
00023
00024 virtual ~SolutionCullingStrategyBase() {}
00025 };
00026
00027 class Application;
00028
00030 Teuchos::RCP<SolutionCullingStrategyBase>
00031 createSolutionCullingStrategy(
00032 const Teuchos::RCP<const Application> &app,
00033 Teuchos::ParameterList ¶ms);
00034
00035 }
00036
00037 #endif // ALBANY_SOLUTIONCULLINGSTRATEGY_HPP