graph.cpp and .h have been modified in order to be compiled with visual studio

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@982 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
jboisson 2008-02-20 16:39:12 +00:00
commit d3235654af
3 changed files with 7 additions and 4 deletions

View file

@ -86,6 +86,8 @@ class moRandImprSelect: public moMoveSelect < M >
better_fitnesses.push_back(_fitness);
better_moves.push_back(_move);
}
return true;
}
//! The move selection

View file

@ -34,10 +34,6 @@
*
*/
#include <fstream>
#include <iostream>
#include <math.h>
#include "graph.h"
using std::cout;

View file

@ -37,8 +37,13 @@
#ifndef graph_h
#define graph_h
#include <string>
#include <vector>
#include <utility>
#include <fstream>
#include <iostream>
#include <math.h>
namespace Graph
{