Changeset 109:abddaa08b507 in lemon-1.2
- Timestamp:
- 03/26/08 17:28:28 (17 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/Makefile.am
r108 r109 32 32 lemon/path.h \ 33 33 lemon/random.h \ 34 lemon/smart_graph.h \ 34 35 lemon/tolerance.h \ 35 36 lemon/unionfind.h -
test/graph_test.cc
r107 r109 19 19 #include <lemon/concepts/graph.h> 20 20 #include <lemon/list_graph.h> 21 //#include <lemon/smart_graph.h>21 #include <lemon/smart_graph.h> 22 22 // #include <lemon/full_graph.h> 23 23 // #include <lemon/grid_graph.h> … … 48 48 { 49 49 checkConcept<Graph, ListGraph>(); 50 //checkConcept<Graph, SmartGraph>();50 checkConcept<Graph, SmartGraph>(); 51 51 // checkConcept<Graph, FullGraph>(); 52 52 // checkConcept<Graph, Graph>(); … … 189 189 190 190 check_graph<ListGraph>(); 191 //check_graph<SmartGraph>();191 check_graph<SmartGraph>(); 192 192 193 193 // {
Note: See TracChangeset
for help on using the changeset viewer.