inline void add_leaving_edge(Edge *e);
inline void del_leaving_edge(Edge *e);
+ inline void decrease_distance_in_heap(Vertex **heap);
+ inline void increase_distance_in_heap(Vertex **heap, int heap_size);
};
//////////////////////////////////////////////////////////////////////
}
}
+void Vertex::decrease_distance_in_heap(Vertex **heap) {
+ Vertex **p, **h;
+ // There is some beauty in that
+ h = heap_slot;
+ while(h > heap &&
+ (p = heap + (h - heap + 1) / 2 - 1,
+ (*p)->distance_from_source > (*h)->distance_from_source)) {
+ swap(*p, *h);
+ swap((*p)->heap_slot, (*h)->heap_slot);
+ h = p;
+ }
+}
+
+void Vertex::increase_distance_in_heap(Vertex **heap, int heap_size) {
+ Vertex **c1, **c2, **h;
+ // omg, that's beautiful
+ h = heap_slot;
+ while(c1 = heap + 2 * (h - heap + 1) - 1, c2 = c1 + 1,
+ (c1 < heap + heap_size && (*c1)->distance_from_source < (*h)->distance_from_source)
+ ||
+ (c2 < heap + heap_size && (*c2)->distance_from_source < (*h)->distance_from_source)
+ ) {
+ if(c1 < heap + heap_size &&
+ !(c2 < heap + heap_size && (*c2)->distance_from_source < (*c1)->distance_from_source)){
+ swap(*c1, *h);
+ swap((*c1)->heap_slot, (*h)->heap_slot);
+ h = c1;
+ } else {
+ swap(*c2, *h);
+ swap((*c2)->heap_slot, (*h)->heap_slot);
+ h = c2;
+ }
+ }
+}
+
//////////////////////////////////////////////////////////////////////
static int compare_vertex(const void *v1, const void *v2) {
return nb_active == 0;
}
-void MTPGraph::decrease_distance_in_heap(Vertex *v) {
- Vertex **p, **h;
- // There is some beauty in that
- h = v->heap_slot;
- while(h > _heap &&
- (p = _heap + (h - _heap + 1) / 2 - 1,
- (*p)->distance_from_source > (*h)->distance_from_source)) {
- swap(*p, *h);
- swap((*p)->heap_slot, (*h)->heap_slot);
- h = p;
- }
-}
-
-void MTPGraph::increase_distance_in_heap(Vertex *v) {
- Vertex **c1, **c2, **h;
- // omg, that's beautiful
- h = v->heap_slot;
- while(c1 = _heap + 2 * (h - _heap + 1) - 1, c2 = c1 + 1,
- (c1 < _heap + _heap_size && (*c1)->distance_from_source < (*h)->distance_from_source)
- ||
- (c2 < _heap + _heap_size && (*c2)->distance_from_source < (*h)->distance_from_source)
- ) {
- if(c1 < _heap + _heap_size &&
- !(c2 < _heap + _heap_size && (*c2)->distance_from_source < (*c1)->distance_from_source)){
- swap(*c1, *h);
- swap((*c1)->heap_slot, (*h)->heap_slot);
- h = c1;
- } else {
- swap(*c2, *h);
- swap((*c2)->heap_slot, (*h)->heap_slot);
- h = c2;
- }
- }
-}
-
void MTPGraph::dp_compute_distances() {
Vertex *v, *tv;
Edge *e;
if(d < tv->distance_from_source) {
tv->distance_from_source = d;
tv->pred_edge_toward_source = e;
- decrease_distance_in_heap(tv);
+ tv->decrease_distance_in_heap(_heap);
}
}
}
_heap_size = _nb_vertices;
_source->distance_from_source = 0;
- decrease_distance_in_heap(_source);
+ _source->decrease_distance_in_heap(_heap);
do {
// Get the closest to the source
a = _heap;
b = _heap + _heap_size;
swap(*a, *b); swap((*a)->heap_slot, (*b)->heap_slot);
- increase_distance_in_heap(_heap[0]);
+ _heap[0]->increase_distance_in_heap(_heap, _heap_size);
// Now update the neighbors of the currently closest to the source
for(e = v->leaving_edges; e; e = e->next_leaving_edge) {
ASSERT(tv->heap_slot - _heap < _heap_size);
tv->distance_from_source = d;
tv->pred_edge_toward_source = e;
- decrease_distance_in_heap(tv);
+ tv->decrease_distance_in_heap(_heap);
}
}
} while(_heap_size > 0);
_edges[e].positivized_length = _edges[e].length;
}
- // Update the distance to the source in "good order"
-
+ // Update the distances to the source in "good order"
dp_compute_distances();
do {