COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/heap_test.h @ 1920:e9e27c5a53bf

Last change on this file since 1920:e9e27c5a53bf was 1763:49045f2d28d4, checked in by Balazs Dezso, 18 years ago

pred => predEdge rename

File size: 2.3 KB
Line 
1// -*- c++ -*-
2
3#include <vector>
4#include <algorithm>
5
6#include <lemon/dijkstra.h>
7
8class IntIntMap : public std::vector<int> {
9public:
10  typedef std::vector<int> Parent;
11
12  IntIntMap() : Parent() {}
13  IntIntMap(int n) : Parent(n) {}
14  IntIntMap(int n, int v) : Parent(n, v) {}
15
16  void set(int key, int value) {
17    Parent::operator[](key) = value;
18  }
19};
20
21
22template <typename _Heap>
23void heapSortTest(int n) {
24  typedef _Heap Heap;
25  IntIntMap map(n, -1);
26
27  Heap heap(map);
28 
29  std::vector<int> v(n);
30
31  for (int i = 0; i < n; ++i) {
32    v[i] = rand() % 1000;
33    heap.push(i, v[i]);
34  }
35  std::sort(v.begin(), v.end());
36  for (int i = 0; i < n; ++i) {
37    check(v[i] == heap.prio() ,"Wrong order in heap sort.");
38    heap.pop();
39  }
40}
41
42template <typename _Heap>
43void heapIncreaseTest(int n) {
44  typedef _Heap Heap;
45  IntIntMap map(n, -1);
46
47  Heap heap(map);
48 
49  std::vector<int> v(n);
50
51  for (int i = 0; i < n; ++i) {
52    v[i] = rand() % 1000;
53    heap.push(i, v[i]);
54  }
55  for (int i = 0; i < n; ++i) {
56    v[i] += rand() % 1000;
57    heap.increase(i, v[i]);
58  }
59  std::sort(v.begin(), v.end());
60  for (int i = 0; i < n; ++i) {
61    check(v[i] == heap.prio() ,"Wrong order in heap increase test.");
62    heap.pop();
63  }
64}
65
66
67
68template <typename _Graph, typename _LengthMap, typename _Heap>
69void dijkstraHeapTest(_Graph& graph, _LengthMap& length,
70                      typename _Graph::Node& start) {
71
72  typedef _Heap Heap;
73  typedef _Graph Graph;
74  typedef _LengthMap LengthMap;
75
76  typedef typename Graph::Node Node;
77  typedef typename Graph::Edge Edge;
78  typedef typename Graph::NodeIt NodeIt;
79  typedef typename Graph::EdgeIt EdgeIt;
80
81  typename Dijkstra<Graph, LengthMap>::template DefStandardHeap<Heap>::
82    Create dijkstra(graph, length);
83
84  dijkstra.run(start);
85
86  for(EdgeIt e(graph); e!=INVALID; ++e) {
87    Node u=graph.source(e);
88    Node v=graph.target(e);
89    if (dijkstra.reached(u)) {
90      check( dijkstra.dist(v) - dijkstra.dist(u) <= length[e],
91             "Error in a shortest path tree edge!");
92    }
93  }
94
95  for(NodeIt v(graph); v!=INVALID; ++v) {
96    if ( dijkstra.reached(v) && dijkstra.predEdge(v) != INVALID ) {
97      Edge e=dijkstra.predEdge(v);
98      Node u=graph.source(e);
99      check( dijkstra.dist(v) - dijkstra .dist(u) == length[e],
100             "Error in a shortest path tree edge!");
101    }
102  }
103
104}
Note: See TracBrowser for help on using the repository browser.