src/test/graph_test.h
changeset 921 818510fa3d99
parent 919 6153d9cf78c6
child 937 d4e911acef3d
equal deleted inserted replaced
5:5d2e135e0acf 6:0b8ad8d42fea
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/test/graph_test.h - Part of HUGOlib, a generic C++ optimization library
     2  * src/test/graph_test.h - 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
    11  * This software is provided "AS IS" with no warranty of any kind,
    11  * This software is provided "AS IS" with no warranty of any kind,
    12  * express or implied, and with no claim as to its suitability for any
    12  * express or implied, and with no claim as to its suitability for any
    13  * purpose.
    13  * purpose.
    14  *
    14  *
    15  */
    15  */
    16 #ifndef HUGO_TEST_GRAPH_TEST_H
    16 #ifndef LEMON_TEST_GRAPH_TEST_H
    17 #define HUGO_TEST_GRAPH_TEST_H
    17 #define LEMON_TEST_GRAPH_TEST_H
    18 
    18 
    19 
    19 
    20 #include "test_tools.h"
    20 #include "test_tools.h"
    21 
    21 
    22 //! \ingroup misc
    22 //! \ingroup misc
    23 //! \file
    23 //! \file
    24 //! \brief Some utility to  test graph classes.
    24 //! \brief Some utility to  test graph classes.
    25 namespace hugo {
    25 namespace lemon {
    26 
    26 
    27   struct DummyType {
    27   struct DummyType {
    28     int value;
    28     int value;
    29     DummyType() {}
    29     DummyType() {}
    30     DummyType(int p) : value(p) {}
    30     DummyType(int p) : value(p) {}
   317 
   317 
   318   ///\file
   318   ///\file
   319   ///\todo Check head(), tail() as well;
   319   ///\todo Check head(), tail() as well;
   320 
   320 
   321   
   321   
   322 } //namespace hugo
   322 } //namespace lemon
   323 
   323 
   324 
   324 
   325 #endif
   325 #endif