00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00028 #ifndef _COST_H_
00029 #define _COST_H_
00030
00031 #include <vector>
00032 #include <algorithm>
00033 #include <string>
00034 #include <fstream>
00035
00037 using namespace std;
00038
00039
00043 class Cost{
00044
00045 private:
00047 vector<int> Class;
00049 vector<int> Class_next;
00051 vector<int> Cout;
00052
00053
00054 public:
00055
00056 void init();
00057 void init_state(const int nb);
00058 int value() const;
00059 int value(const int i) const;
00060 int value_next() const;
00061 int value_next(const int i) const;
00062 void swap();
00063 bool test();
00064 bool test_next();
00065 void free_cl();
00066 void change(const int i,const int j);
00067 void mk_cost(const string path);
00068 int nb_cl();
00069 };
00070
00071
00072
00073 #include "cost.inl"
00074
00075
00076 #endif
00077