LAMA
/home/brandes/workspace/LAMA/src/lama/solver/creator/SimpleAMGCreator.hpp
Go to the documentation of this file.
00001 
00033 #ifndef LAMA_SimpleAMGCreator_HPP_
00034 #define LAMA_SimpleAMGCreator_HPP_
00035 
00036 // for dll_import
00037 #include <lama/config.hpp>
00038 
00039 // base classes
00040 #include <lama/solver/creator/IterativeSolverCreator.hpp>
00041 
00042 namespace lama
00043 {
00044 
00045 class LAMA_DLL_IMPORTEXPORT SimpleAMGCreator : public IterativeSolverCreator
00046 {
00047 public:
00048     using IterativeSolverCreator::RuleType;
00049 
00050     SimpleAMGCreator( const std::string type );
00051 
00052     virtual ~SimpleAMGCreator();
00053 
00057     static const std::string& id();
00058 
00062     virtual RuleType& getCreatorRule();
00063 protected:
00069     RuleType mRSimpleAMG;
00070 
00071 private:
00072     LAMA_LOG_DECL_STATIC_LOGGER(logger);
00073 };
00074 
00075 }  // namespace lama
00076 
00077 #endif // LAMA_SimpleAMGCreator_HPP_