00001 #ifndef OPTFRAME_EMPTY_HPP_ 00002 #define OPTFRAME_EMPTY_HPP_ 00003 00004 #include "../Heuristic.hpp" 00005 00006 template<class R, class M = OPTFRAME_DEFAULT_MEMORY> 00007 class Empty : public Heuristic<R,M> 00008 { 00009 public: 00010 00011 using Heuristic<R, M>::exec; // prevents name hiding 00012 00013 Empty(){}; 00014 virtual void exec(Solution<R>&, double timelimit, double target_f){}; 00015 virtual void exec(Solution<R>&, Evaluation<M>&, double timelimit, double target_f){}; 00016 }; 00017 00018 #endif /*OPTFRAME_EMPTY_HPP_*/
1.7.1