00001 #ifndef SCIL_PRIMAL_HEUR_H
00002 #define SCIL_PRIMAL_HEUR_H
00003
00004 /*{\Manpage {primal_heuristic} {} {Primal Heuristic}{PH}}*/
00005
00006 namespace SCIL {
00007
00008 class subproblem;
00009
00010 class primal_heuristic {
00011 public:
00012
00015 virtual int heuristic(subproblem&) {
00016 return 0;
00017 }
00018 };
00019
00020 };
00021
00022 #endif
1.2.16