Changes in / [114:c837d1e449dc:115:7b44eea654d0] in lemon-1.2
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.hgignore
r85 r111 5 5 *~ 6 6 *.o 7 .#.*8 7 *.log 9 8 *.lo … … 28 27 29 28 syntax: regexp 29 (.*/)?\#[^/]*\#$ 30 30 ^doc/html/.* 31 31 ^autom4te.cache/.* -
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 -
lemon/random.h
r102 r110 66 66 #include <iterator> 67 67 #include <vector> 68 69 #include <ctime> 68 #include <limits> 70 69 71 70 #include <lemon/math.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.