00001 #ifndef INTENSIFICATION_HPP_ 00002 #define INTENSIFICATION_HPP_ 00003 00004 #include "../Heuristic.hpp" 00005 00006 template<class R,class M> 00007 class Intensification : public Heuristic<R,M> 00008 { 00009 public: 00010 00011 virtual void exec(Solution<R>& _s, double timelimit, double target_f) = 0; 00012 00013 virtual void addSolution(const Solution<R>&) = 0; 00014 }; 00015 00016 00017 #endif /*INTENSIFICATION_HPP_*/
1.7.1