00001 /* 00002 * GeneralInterpolation.hpp 00003 * 00004 * Created on: Feb 3, 2017 00005 * Author: damian 00006 */ 00007 00008 #ifndef SRC_AMG_MKB_AMG_INTERPOLATION_GENERALINTERPOLATION_HPP_ 00009 #define SRC_AMG_MKB_AMG_INTERPOLATION_GENERALINTERPOLATION_HPP_ 00010 00011 #include "InterpolationStrategy.hpp" 00012 00013 class GeneralInterpolation : public InterpolationStrategy{ 00014 public: 00015 GeneralInterpolation(); 00016 virtual ~GeneralInterpolation(); 00017 Mat GetMatrixFromCoarseToFine(); 00018 }; 00019 00020 #endif /* SRC_AMG_MKB_AMG_INTERPOLATION_GENERALINTERPOLATION_HPP_ */