Changeset 522:22f932bbb305 in lemon-main
- Timestamp:
- 11/03/08 12:59:54 (16 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r520 r522 55 55 lemon/color.h \ 56 56 lemon/concept_check.h \ 57 lemon/connectivity.h \ 57 58 lemon/counter.h \ 58 59 lemon/core.h \ -
lemon/euler.h
r521 r522 55 55 ///If \c g is not Euler then the resulted tour will not be full or closed. 56 56 ///\sa EulerIt 57 ///\todo Test required58 57 template<class Digraph> 59 58 class DiEulerIt … … 147 146 ///If \c g is not Euler then the resulted tour will not be full or closed. 148 147 ///\sa EulerIt 149 ///\todo Test required150 148 template<class Digraph> 151 149 class EulerIt … … 241 239 ///for each node. <em>Therefore, there are digraphs which are not Eulerian, 242 240 ///but still have an Euler tour</em>. 243 ///\todo Test required244 241 template<class Digraph> 245 242 #ifdef DOXYGEN -
test/CMakeLists.txt
r488 r522 21 21 edge_set_test 22 22 error_test 23 euler_test 23 24 graph_copy_test 24 25 graph_test -
test/Makefile.am
r469 r522 17 17 test/edge_set_test \ 18 18 test/error_test \ 19 test/euler_test \ 19 20 test/graph_copy_test \ 20 21 test/graph_test \ … … 55 56 test_edge_set_test_SOURCES = test/edge_set_test.cc 56 57 test_error_test_SOURCES = test/error_test.cc 58 test_euler_test_SOURCES = test/euler_test.cc 57 59 test_graph_copy_test_SOURCES = test/graph_copy_test.cc 58 60 test_graph_test_SOURCES = test/graph_test.cc
Note: See TracChangeset
for help on using the changeset viewer.