Timetabler
tsolver.h
Go to the documentation of this file.
1 
3 #ifndef TSOLVER_H
4 #define TSOLVER_H
5 
6 #include <vector>
7 #include "MaxSAT.h"
8 #include "algorithms/Alg_OLL.h"
9 #include "mtl/Vec.h"
10 
11 using namespace NSPACE;
12 using namespace openwbo;
13 
25 class TSolver : public OLL {
26  public:
27  TSolver(int, int);
28  std::vector<lbool> tSearch();
29  void tWeighted();
30 };
31 
32 #endif
Class for solver.
Definition: tsolver.h:25