diff -r 3250756f5add -r 4f411276c767 test/heap_test.cc --- a/test/heap_test.cc Tue Feb 05 12:41:05 2008 +0000 +++ b/test/heap_test.cc Tue Feb 05 12:45:23 2008 +0000 @@ -77,21 +77,21 @@ run(); { - std::cerr << "Checking Bin Heap" << std::endl; + std::cout << "Checking Bin Heap" << std::endl; typedef BinHeap IntHeap; checkConcept, IntHeap>(); heapSortTest(100); heapIncreaseTest(100); - typedef FibHeap > NodeHeap; + typedef BinHeap > NodeHeap; checkConcept >, NodeHeap>(); Timer timer; dijkstraHeapTest(graph, length, start); std::cout << timer << std::endl; } { - std::cerr << "Checking Fib Heap" << std::endl; + std::cout << "Checking Fib Heap" << std::endl; typedef FibHeap IntHeap; checkConcept, IntHeap>(); @@ -105,7 +105,7 @@ std::cout << timer << std::endl; } { - std::cerr << "Checking Radix Heap" << std::endl; + std::cout << "Checking Radix Heap" << std::endl; typedef RadixHeap IntHeap; checkConcept, IntHeap>(); @@ -120,7 +120,7 @@ } { - std::cerr << "Checking Bucket Heap" << std::endl; + std::cout << "Checking Bucket Heap" << std::endl; typedef BucketHeap IntHeap; checkConcept, IntHeap>();