src/test/graph_wrapper_test.cc
changeset 921 818510fa3d99
parent 906 17f31d280385
child 933 1b7c88fbb950
equal deleted inserted replaced
4:aae15b412b77 5:5d498b7b7c6c
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/test/graph_wrapper_test.cc - Part of HUGOlib, a generic C++ optimization library
     2  * src/test/graph_wrapper_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<iostream>
    17 #include<iostream>
    18 #include<hugo/smart_graph.h>
    18 #include<lemon/smart_graph.h>
    19 #include<hugo/skeletons/graph.h>
    19 #include<lemon/skeletons/graph.h>
    20 #include<hugo/list_graph.h>
    20 #include<lemon/list_graph.h>
    21 #include<hugo/full_graph.h>
    21 #include<lemon/full_graph.h>
    22 #include<hugo/graph_wrapper.h>
    22 #include<lemon/graph_wrapper.h>
    23 
    23 
    24 #include"test/test_tools.h"
    24 #include"test/test_tools.h"
    25 #include"test/graph_test.h"
    25 #include"test/graph_test.h"
    26 
    26 
    27 /**
    27 /**
    29 This test makes consistency checks of graph wrappers.
    29 This test makes consistency checks of graph wrappers.
    30 
    30 
    31 \todo More extensive tests are needed 
    31 \todo More extensive tests are needed 
    32 */
    32 */
    33 
    33 
    34 using namespace hugo;
    34 using namespace lemon;
    35 
    35 
    36 
    36 
    37 typedef SmartGraph Graph;
    37 typedef SmartGraph Graph;
    38 
    38 
    39 //Compile GraphWrapper
    39 //Compile GraphWrapper