COIN-OR::LEMON - Graph Library

Changeset 522:22f932bbb305 in lemon-1.2


Ignore:
Timestamp:
11/03/08 12:59:54 (15 years ago)
Author:
Akos Ladanyi <ladanyi@…>
Branch:
default
Phase:
public
Message:

Test for euler.h (#65)

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • lemon/Makefile.am

    r520 r522  
    5555        lemon/color.h \
    5656        lemon/concept_check.h \
     57        lemon/connectivity.h \
    5758        lemon/counter.h \
    5859        lemon/core.h \
  • lemon/euler.h

    r521 r522  
    5555  ///If \c g is not Euler then the resulted tour will not be full or closed.
    5656  ///\sa EulerIt
    57   ///\todo Test required
    5857  template<class Digraph>
    5958  class DiEulerIt
     
    147146  ///If \c g is not Euler then the resulted tour will not be full or closed.
    148147  ///\sa EulerIt
    149   ///\todo Test required
    150148  template<class Digraph>
    151149  class EulerIt
     
    241239  ///for each node. <em>Therefore, there are digraphs which are not Eulerian,
    242240  ///but still have an Euler tour</em>.
    243   ///\todo Test required
    244241  template<class Digraph>
    245242#ifdef DOXYGEN
  • test/CMakeLists.txt

    r512 r522  
    2121  edge_set_test
    2222  error_test
     23  euler_test
    2324  graph_copy_test
    2425  graph_test
  • test/Makefile.am

    r469 r522  
    1717        test/edge_set_test \
    1818        test/error_test \
     19        test/euler_test \
    1920        test/graph_copy_test \
    2021        test/graph_test \
     
    5556test_edge_set_test_SOURCES = test/edge_set_test.cc
    5657test_error_test_SOURCES = test/error_test.cc
     58test_euler_test_SOURCES = test/euler_test.cc
    5759test_graph_copy_test_SOURCES = test/graph_copy_test.cc
    5860test_graph_test_SOURCES = test/graph_test.cc
Note: See TracChangeset for help on using the changeset viewer.