test/dijkstra_test.cc
changeset 171 02f4d5d9bfd7
parent 170 91fb4372688f
child 209 765619b7cbb2
equal deleted inserted replaced
0:897fc9a61f1f 1:621661e24325
    14  * express or implied, and with no claim as to its suitability for any
    14  * express or implied, and with no claim as to its suitability for any
    15  * purpose.
    15  * purpose.
    16  *
    16  *
    17  */
    17  */
    18 
    18 
    19 ///\file
       
    20 ///\brief Test cases for Dijkstra algorithm.
       
    21 
       
    22 #include <lemon/concepts/digraph.h>
    19 #include <lemon/concepts/digraph.h>
    23 #include <lemon/smart_graph.h>
    20 #include <lemon/smart_graph.h>
    24 #include <lemon/list_graph.h>
    21 #include <lemon/list_graph.h>
    25 #include <lemon/graph_utils.h>
    22 #include <lemon/graph_utils.h>
    26 #include <lemon/dijkstra.h>
    23 #include <lemon/dijkstra.h>
    27 #include <lemon/path.h>
    24 #include <lemon/path.h>
    28 
    25 
       
    26 #include "graph_test.h"
    29 #include "test_tools.h"
    27 #include "test_tools.h"
    30 
    28 
    31 using namespace lemon;
    29 using namespace lemon;
    32 
    30 
    33 void checkDijkstraCompile() 
    31 void checkDijkstraCompile()