Changeset 1111:c8fce9beb46a in lemon
- Timestamp:
- 12/20/11 19:25:40 (13 years ago)
- Branch:
- default
- Parents:
- 1095:9a716871028e (diff), 1108:a1fd7008a052 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r1107 r1111 115 115 SET(LEMON_HAVE_LONG_LONG ${HAVE_LONG_LONG}) 116 116 117 INCLUDE(FindPythonInterp)118 119 117 ENABLE_TESTING() 120 118 … … 127 125 ADD_SUBDIRECTORY(lemon) 128 126 IF(${CMAKE_SOURCE_DIR} STREQUAL ${PROJECT_SOURCE_DIR}) 127 ADD_SUBDIRECTORY(contrib) 129 128 ADD_SUBDIRECTORY(demo) 130 129 ADD_SUBDIRECTORY(tools) -
doc/Doxyfile.in
r1107 r1111 96 96 "@abs_top_srcdir@/lemon/concepts" \ 97 97 "@abs_top_srcdir@/demo" \ 98 "@abs_top_srcdir@/contrib" \ 98 99 "@abs_top_srcdir@/tools" \ 99 100 "@abs_top_srcdir@/test/test_tools.h" \ -
lemon/Makefile.am
r1107 r1111 92 92 lemon/graph_to_eps.h \ 93 93 lemon/grid_graph.h \ 94 lemon/grosso_locatelli_pullan_mc.h \ 94 95 lemon/hartmann_orlin_mmc.h \ 95 96 lemon/howard_mmc.h \ … … 108 109 lemon/math.h \ 109 110 lemon/min_cost_arborescence.h \ 111 lemon/max_cardinality_search.h \ 112 lemon/nagamochi_ibaraki.h \ 110 113 lemon/nauty_reader.h \ 111 114 lemon/network_simplex.h \ -
lemon/core.h
r1107 r1111 447 447 448 448 } 449 450 /// \brief Check whether a graph is undirected. 451 /// 452 /// This function returns \c true if the given graph is undirected. 453 #ifdef DOXYGEN 454 template <typename GR> 455 bool undirected(const GR& g) { return false; } 456 #else 457 template <typename GR> 458 typename enable_if<UndirectedTagIndicator<GR>, bool>::type 459 undirected(const GR&) { 460 return true; 461 } 462 template <typename GR> 463 typename disable_if<UndirectedTagIndicator<GR>, bool>::type 464 undirected(const GR&) { 465 return false; 466 } 467 #endif 449 468 450 469 /// \brief Class to copy a digraph. -
test/CMakeLists.txt
r1107 r1111 37 37 maps_test 38 38 matching_test 39 max_cardinality_search_test 40 max_clique_test 39 41 min_cost_arborescence_test 40 42 min_cost_flow_test 41 43 min_mean_cycle_test 44 nagamochi_ibaraki_test 42 45 path_test 43 46 planarity_test -
test/Makefile.am
r1107 r1111 35 35 test/maps_test \ 36 36 test/matching_test \ 37 test/max_cardinality_search_test \ 38 test/max_clique_test \ 37 39 test/min_cost_arborescence_test \ 38 40 test/min_cost_flow_test \ 39 41 test/min_mean_cycle_test \ 42 test/nagamochi_ibaraki_test \ 40 43 test/path_test \ 41 44 test/planarity_test \ … … 79 82 test_graph_test_SOURCES = test/graph_test.cc 80 83 test_graph_utils_test_SOURCES = test/graph_utils_test.cc 84 test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc 81 85 test_heap_test_SOURCES = test/heap_test.cc 82 86 test_kruskal_test_SOURCES = test/kruskal_test.cc 83 test_hao_orlin_test_SOURCES = test/hao_orlin_test.cc84 87 test_lgf_test_SOURCES = test/lgf_test.cc 85 88 test_lp_test_SOURCES = test/lp_test.cc … … 87 90 test_mip_test_SOURCES = test/mip_test.cc 88 91 test_matching_test_SOURCES = test/matching_test.cc 92 test_max_cardinality_search_test_SOURCES = test/max_cardinality_search_test.cc 93 test_max_clique_test_SOURCES = test/max_clique_test.cc 89 94 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc 90 95 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc 91 96 test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc 97 test_nagamochi_ibaraki_test_SOURCES = test/nagamochi_ibaraki_test.cc 92 98 test_path_test_SOURCES = test/path_test.cc 93 99 test_planarity_test_SOURCES = test/planarity_test.cc
Note: See TracChangeset
for help on using the changeset viewer.