Main Page   Namespace List   Compound List   File List   Compound Members   File Members  

cost.h

Go to the documentation of this file.
00001 
00002 /* Copyright(C) (2002) (ID - IMAG) <Florent.Morata@imag.fr> */
00003 
00004 /*
00005  *  This program is free software; you can redistribute it and/or modify
00006  *  it under the terms of the GNU General Public License as published by
00007  *  the Free Software Foundation; either version 2 of the License, or
00008  *  (at your option) any later version.
00009  *
00010  *  This program is distributed in the hope that it will be useful,
00011  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  *  GNU Library General Public License for more details.
00014  *
00015  *  You should have received a copy of the GNU General Public License
00016  *  along with this program; if not, write to the Free Software
00017  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
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 

Generated on Tue Dec 10 12:44:42 2002 for PSI_SAMPLE by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002