Changes in / [115:7b44eea654d0:114:c837d1e449dc] in lemon-1.1
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.hgignore
r111 r85 5 5 *~ 6 6 *.o 7 .#.* 7 8 *.log 8 9 *.lo … … 27 28 28 29 syntax: regexp 29 (.*/)?\#[^/]*\#$30 30 ^doc/html/.* 31 31 ^autom4te.cache/.* -
lemon/Makefile.am
r109 r108 32 32 lemon/path.h \ 33 33 lemon/random.h \ 34 lemon/smart_graph.h \35 34 lemon/tolerance.h \ 36 35 lemon/unionfind.h -
lemon/random.h
r110 r102 66 66 #include <iterator> 67 67 #include <vector> 68 #include <limits> 68 69 #include <ctime> 69 70 70 71 #include <lemon/math.h> -
test/graph_test.cc
r109 r107 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.