00001 // -*- mode: c++; c-indent-level: 4; c++-member-init-indent: 8; comment-column: 35; -*- 00002 00003 // "graph.h" 00004 00005 // (c) OPAC Team, LIFL, 2003-2006 00006 00007 /* LICENCE TEXT 00008 00009 Contact: paradiseo-help@lists.gforge.inria.fr 00010 */ 00011 00012 #ifndef graph_h 00013 #define graph_h 00014 00015 #include <vector> 00016 #include <utility> 00017 00018 namespace Graph 00019 { 00020 void load (const char * __file_name) ; 00021 /* Loading cities 00022 (expressed by their coordinates) 00023 from the given file name */ 00024 00025 float distance (unsigned int __from, unsigned int __to) ; 00026 00027 unsigned int size () ; // How many cities ? 00028 } 00029 00030 #endif
1.5.2