src/test/dijkstra_test.cc
changeset 921 818510fa3d99
parent 906 17f31d280385
child 959 c80ef5912903
equal deleted inserted replaced
9:2029828c41e6 10:538ca60ba54b
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/test/dijkstra_test.cc - Part of HUGOlib, a generic C++ optimization library
     2  * src/test/dijkstra_test.cc - Part of LEMON, a generic C++ optimization library
     3  *
     3  *
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
     6  *
     6  *
     7  * Permission to use, modify and distribute this software is granted
     7  * Permission to use, modify and distribute this software is granted
    13  * purpose.
    13  * purpose.
    14  *
    14  *
    15  */
    15  */
    16 
    16 
    17 #include "test_tools.h"
    17 #include "test_tools.h"
    18 #include <hugo/smart_graph.h>
    18 #include <lemon/smart_graph.h>
    19 #include <hugo/dijkstra.h>
    19 #include <lemon/dijkstra.h>
    20 #include<hugo/skeletons/graph.h>
    20 #include<lemon/skeletons/graph.h>
    21 #include<hugo/skeletons/maps.h>
    21 #include<lemon/skeletons/maps.h>
    22 using namespace hugo;
    22 using namespace lemon;
    23 
    23 
    24 const int PET_SIZE =5;
    24 const int PET_SIZE =5;
    25 
    25 
    26 
    26 
    27 void check_Dijkstra_BinHeap_Compile() 
    27 void check_Dijkstra_BinHeap_Compile()