diff -r 0977046c60d2 -r 65a0521e744e test/heap_test.cc --- a/test/heap_test.cc Sat Sep 26 07:21:54 2009 +0200 +++ b/test/heap_test.cc Tue Sep 29 13:32:01 2009 +0200 @@ -30,12 +30,12 @@ #include #include -#include -#include +#include +#include #include #include #include -#include +#include #include #include "test_tools.h" @@ -185,26 +185,26 @@ dijkstraHeapTest(digraph, length, source); } - // FouraryHeap + // QuadHeap { - typedef FouraryHeap IntHeap; + typedef QuadHeap IntHeap; checkConcept, IntHeap>(); heapSortTest(); heapIncreaseTest(); - typedef FouraryHeap NodeHeap; + typedef QuadHeap NodeHeap; checkConcept, NodeHeap>(); dijkstraHeapTest(digraph, length, source); } - // KaryHeap + // DHeap { - typedef KaryHeap IntHeap; + typedef DHeap IntHeap; checkConcept, IntHeap>(); heapSortTest(); heapIncreaseTest(); - typedef KaryHeap NodeHeap; + typedef DHeap NodeHeap; checkConcept, NodeHeap>(); dijkstraHeapTest(digraph, length, source); } @@ -245,14 +245,14 @@ dijkstraHeapTest(digraph, length, source); } - // BinomHeap + // BinomialHeap { - typedef BinomHeap IntHeap; + typedef BinomialHeap IntHeap; checkConcept, IntHeap>(); heapSortTest(); heapIncreaseTest(); - typedef BinomHeap NodeHeap; + typedef BinomialHeap NodeHeap; checkConcept, NodeHeap>(); dijkstraHeapTest(digraph, length, source); }