Changeset 578:159f1cbf8a45 in lemon-0.x
- Timestamp:
- 05/07/04 15:27:16 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@754
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
doc/Doxyfile
r567 r578 397 397 ../src/hugo \ 398 398 ../src/hugo/skeletons \ 399 ../src/work/alpar/list_graph.h \400 399 ../src/work/athos/minlengthpaths.h \ 401 400 ../src/work/klao/path.h \ -
src/hugo/Makefile.am
r573 r578 6 6 fib_heap.h \ 7 7 invalid.h \ 8 list_graph.h \ 8 9 maps.h \ 9 10 smart_graph.h \ -
src/test/dijkstra_test.cc
r570 r578 1 #include <test_tools.h>1 #include "test_tools.h" 2 2 #include <hugo/smart_graph.h> 3 3 #include <hugo/dijkstra.h> … … 60 60 LengthMap cap(G); 61 61 PetStruct<Graph> ps = addPetersen(G,PET_SIZE); 62 62 63 63 for(int i=0;i<PET_SIZE;i++) { 64 64 cap[ps.outcir[i]]=4; -
src/test/graph_test.cc
r567 r578 2 2 #include<hugo/smart_graph.h> 3 3 #include<hugo/skeletons/graph.h> 4 #include<hugo/list_graph.h> 5 4 6 #include"test_tools.h" 5 6 //#include<../work/alpar/list_graph.h>7 7 8 8 /* … … 243 243 template void checkCompile<SmartGraph>(SmartGraph &); 244 244 template void checkCompile<SymSmartGraph>(SymSmartGraph &); 245 //template void checkCompile<ListGraph>(ListGraph &);246 //template void checkCompile<SymListGraph>(SymListGraph &);245 template void checkCompile<ListGraph>(ListGraph &); 246 template void checkCompile<SymListGraph>(SymListGraph &); 247 247 248 248 //Due to some mysterious and some conceptual problems it does not work. … … 257 257 checkPetersen(G); 258 258 } 259 //{260 //ListGraph G;261 //addPetersen(G);262 //bidirPetersen(G);263 //checkPetersen(G);264 //}259 { 260 ListGraph G; 261 addPetersen(G); 262 bidirPetersen(G); 263 checkPetersen(G); 264 } 265 265 { 266 266 SymSmartGraph G; … … 268 268 checkPetersen(G); 269 269 } 270 //{271 //SymListGraph G;272 //addPetersen(G);273 //checkPetersen(G);274 //}270 { 271 SymListGraph G; 272 addPetersen(G); 273 checkPetersen(G); 274 } 275 275 276 276 //\todo map tests.
Note: See TracChangeset
for help on using the changeset viewer.