Changeset 921:818510fa3d99 in lemon-0.x for src/test/dijkstra_heap_test.cc
- Timestamp:
- 09/29/04 17:30:04 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1232
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/test/dijkstra_heap_test.cc
r906 r921 1 1 /* -*- C++ -*- 2 * src/test/dijkstra_heap_test.cc - Part of HUGOlib, a generic C++ optimization library2 * src/test/dijkstra_heap_test.cc - Part of LEMON, a generic C++ optimization library 3 3 * 4 4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport … … 20 20 21 21 //The input is a graph in standard dimacs format from the standard input (like 22 //in / hugo_loc/testfiles/dimacs). It runs dijkstra.h on this graph with both22 //in /lemon_loc/testfiles/dimacs). It runs dijkstra.h on this graph with both 23 23 //heaps, checking two postconditions: 24 24 … … 31 31 #include <math.h> 32 32 33 #include < hugo/smart_graph.h>34 #include < hugo/dimacs.h>35 #include < hugo/dijkstra.h>36 #include < hugo/time_measure.h>37 #include < hugo/bin_heap.h>38 #include < hugo/fib_heap.h>33 #include <lemon/smart_graph.h> 34 #include <lemon/dimacs.h> 35 #include <lemon/dijkstra.h> 36 #include <lemon/time_measure.h> 37 #include <lemon/bin_heap.h> 38 #include <lemon/fib_heap.h> 39 39 40 using namespace hugo;40 using namespace lemon; 41 41 42 42 int main(int, char **) {
Note: See TracChangeset
for help on using the changeset viewer.