X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_graph.cc;h=5b42781f0b0ae8885f12fb20ddbe48c4d89f1d37;hb=5c9f12580ae4e515ef48d0891c7d85a3d7eb2b04;hp=682dd808e830eb4f36d99a02695d240fc3da3f50;hpb=78b0bdef0b9a3479502c7598fd69a012c297e125;p=mtp.git diff --git a/mtp_graph.cc b/mtp_graph.cc index 682dd80..5b42781 100644 --- a/mtp_graph.cc +++ b/mtp_graph.cc @@ -24,6 +24,7 @@ #include "mtp_graph.h" +#include #include using namespace std; @@ -43,9 +44,10 @@ public: class Vertex { public: - Edge *leaving_edges; scalar_t distance_from_source; Edge *pred_edge_toward_source; + + Edge *leaving_edge_list_root; Vertex **heap_slot; Vertex(); @@ -69,19 +71,21 @@ void Edge::invert() { ////////////////////////////////////////////////////////////////////// Vertex::Vertex() { - leaving_edges = 0; + leaving_edge_list_root = 0; } void Vertex::add_leaving_edge(Edge *e) { - e->next_leaving_edge = leaving_edges; + e->next_leaving_edge = leaving_edge_list_root; e->pred_leaving_edge = 0; - if(leaving_edges) { leaving_edges->pred_leaving_edge = e; } - leaving_edges = e; + if(leaving_edge_list_root) { + leaving_edge_list_root->pred_leaving_edge = e; + } + leaving_edge_list_root = e; } void Vertex::del_leaving_edge(Edge *e) { - if(e == leaving_edges) { - leaving_edges = e->next_leaving_edge; + if(e == leaving_edge_list_root) { + leaving_edge_list_root = e->next_leaving_edge; } if(e->pred_leaving_edge) { e->pred_leaving_edge->next_leaving_edge = e->next_leaving_edge; @@ -93,51 +97,46 @@ void Vertex::del_leaving_edge(Edge *e) { 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)) { + while(1) { + if(h <= heap) break; + p = heap + ((h - heap + 1) >> 1) - 1; + if((*p)->distance_from_source <= distance_from_source) break; + swap((*p)->heap_slot, heap_slot); swap(*p, *h); - swap((*p)->heap_slot, (*h)->heap_slot); h = p; } } void Vertex::increase_distance_in_heap(Vertex **heap, Vertex **heap_bottom) { Vertex **c1, **c2, **h; - // omg, that's beautiful h = heap_slot; - while(c1 = heap + 2 * (h - heap) + 1, - c1 < heap_bottom && - (c2 = c1 + 1, - (*c1)->distance_from_source < (*h)->distance_from_source - || - (c2 < heap_bottom && (*c2)->distance_from_source < (*h)->distance_from_source) - )) { - if(c2 < heap_bottom && (*c2)->distance_from_source <= (*c1)->distance_from_source) { - swap(*c2, *h); - swap((*c2)->heap_slot, (*h)->heap_slot); - h = c2; + while(1) { + c1 = heap + 2 * (h - heap) + 1; + if(c1 >= heap_bottom) break; + c2 = c1 + 1; + if((*c1)->distance_from_source < distance_from_source) { + if(c2 < heap_bottom && (*c2)->distance_from_source < (*c1)->distance_from_source) { + swap((*c2)->heap_slot, heap_slot); + swap(*c2, *h); + h = c2; + } else { + swap((*c1)->heap_slot, heap_slot); + swap(*c1, *h); + h = c1; + } } else { - swap(*c1, *h); - swap((*c1)->heap_slot, (*h)->heap_slot); - h = c1; + if(c2 < heap_bottom && (*c2)->distance_from_source < distance_from_source) { + swap((*c2)->heap_slot, heap_slot); + swap(*c2, *h); + h = c2; + } else break; } } } ////////////////////////////////////////////////////////////////////// -static int compare_vertex(const void *v1, const void *v2) { - scalar_t delta = - (*((Vertex **) v1))->distance_from_source - - (*((Vertex **) v2))->distance_from_source; - if(delta < 0) return -1; - else if(delta > 0) return 1; - else return 0; -} - MTPGraph::MTPGraph(int nb_vertices, int nb_edges, int *vertex_from, int *vertex_to, int source, int sink) { @@ -153,10 +152,10 @@ MTPGraph::MTPGraph(int nb_vertices, int nb_edges, _sink = &_vertices[sink]; for(int e = 0; e < nb_edges; e++) { - _vertices[vertex_from[e]].add_leaving_edge(_edges + e); + _vertices[vertex_from[e]].add_leaving_edge(&_edges[e]); _edges[e].occupied = 0; - _edges[e].origin_vertex = _vertices + vertex_from[e]; - _edges[e].terminal_vertex = _vertices + vertex_to[e]; + _edges[e].origin_vertex = &_vertices[vertex_from[e]]; + _edges[e].terminal_vertex = &_vertices[vertex_to[e]]; } for(int v = 0; v < _nb_vertices; v++) { @@ -167,16 +166,7 @@ MTPGraph::MTPGraph(int nb_vertices, int nb_edges, paths = 0; nb_paths = 0; - if(compute_dp_ranks()) { - // Here the distance_from_source field of every vertex is the - // number of DP iterations needed to update it. Hence we only have - // to process the vertex in that order. - for(int v = 0; v < _nb_vertices; v++) { _dp_order[v] = &_vertices[v]; } - qsort(_dp_order, _nb_vertices, sizeof(Vertex *), compare_vertex); - } else { - cerr << __FILE__ << ": This graph is not a DAG." << endl; - abort(); - } + compute_dp_ordering(); } MTPGraph::~MTPGraph() { @@ -188,73 +178,16 @@ MTPGraph::~MTPGraph() { delete[] paths; } -int MTPGraph::compute_dp_ranks() { - Vertex *v; - Edge *e; - - // This procedure computes for each node the longest link from the - // source and abort if the graph is not a DAG. It works by removing - // successively nodes without predecessor: At the first iteration it - // removes the source, then the nodes with incoming edge only from - // the source, etc. If it can remove all the nodes that way, the - // graph is a DAG. If at some point it can not remove node anymore - // and there are some remaining nodes, the graph is not a DAG. The - // rank of a node is the iteration at which is it removed, and we - // set the distance_from_source fields to this value. - - Vertex **with_predecessor = new Vertex *[_nb_vertices]; - - // All the nodes are with_predecessor at first - for(int k = 0; k < _nb_vertices; k++) { - _vertices[k].distance_from_source = 0; - with_predecessor[k] = &_vertices[k]; - } - - scalar_t rank = 1; - int nb_with_predecessor = _nb_vertices, pred_nb_with_predecessor; - - do { - // We set the distance_from_source field of all the vertices with incoming - // edges to the current rank value - for(int f = 0; f < nb_with_predecessor; f++) { - v = with_predecessor[f]; - for(e = v->leaving_edges; e; e = e->next_leaving_edge) { - e->terminal_vertex->distance_from_source = rank; - } - } - - pred_nb_with_predecessor = nb_with_predecessor; - nb_with_predecessor = 0; - - // We keep all the vertices with incoming nodes - for(int f = 0; f < pred_nb_with_predecessor; f++) { - v = with_predecessor[f]; - if(v->distance_from_source == rank) { - with_predecessor[nb_with_predecessor++] = v; - } - } - - rank++; - } while(nb_with_predecessor < pred_nb_with_predecessor); - - delete[] with_predecessor; - - return nb_with_predecessor == 0; -} - ////////////////////////////////////////////////////////////////////// void MTPGraph::print(ostream *os) { for(int k = 0; k < _nb_edges; k++) { - Edge *e = _edges + k; + Edge *e = &_edges[k]; (*os) << e->origin_vertex - _vertices - << " -> " - << e->terminal_vertex - _vertices - << " " - << e->length; - if(e->occupied) { - (*os) << " *"; - } + << " -> " + << e->terminal_vertex - _vertices + << " (" << e->length << ")"; + if(e->occupied) { (*os) << " *"; } (*os) << endl; } } @@ -267,7 +200,7 @@ void MTPGraph::print_dot(ostream *os) { (*os) << " " << _source - _vertices << " [peripheries=2];" << endl; (*os) << " " << _sink - _vertices << " [peripheries=2];" << endl; for(int k = 0; k < _nb_edges; k++) { - Edge *e = _edges + k; + Edge *e = &_edges[k]; (*os) << " " << e->origin_vertex - _vertices << " -> " @@ -285,7 +218,7 @@ void MTPGraph::print_dot(ostream *os) { void MTPGraph::update_positivized_lengths() { for(int k = 0; k < _nb_edges; k++) { - Edge *e = _edges + k; + Edge *e = &_edges[k]; e->positivized_length += e->origin_vertex->distance_from_source - e->terminal_vertex->distance_from_source; } @@ -297,7 +230,7 @@ void MTPGraph::force_positivized_lengths() { scalar_t max_error = 0.0; #endif for(int k = 0; k < _nb_edges; k++) { - Edge *e = _edges + k; + Edge *e = &_edges[k]; if(e->positivized_length < 0) { #ifdef VERBOSE @@ -326,7 +259,7 @@ void MTPGraph::dp_compute_distances() { for(int k = 0; k < _nb_vertices; k++) { v = _dp_order[k]; - for(e = v->leaving_edges; e; e = e->next_leaving_edge) { + for(e = v->leaving_edge_list_root; e; e = e->next_leaving_edge) { d = v->distance_from_source + e->positivized_length; tv = e->terminal_vertex; if(d < tv->distance_from_source) { @@ -368,7 +301,7 @@ void MTPGraph::find_shortest_path() { // Now update the neighbors of the node currently closest to the // source - for(e = v->leaving_edges; e; e = e->next_leaving_edge) { + for(e = v->leaving_edge_list_root; e; e = e->next_leaving_edge) { d = v->distance_from_source + e->positivized_length; tv = e->terminal_vertex; if(d < tv->distance_from_source) { @@ -440,7 +373,7 @@ void MTPGraph::find_best_paths(scalar_t *lengths) { // Put back the graph in its original state (i.e. invert edges which // have been inverted in the process) for(int k = 0; k < _nb_edges; k++) { - e = _edges + k; + e = &_edges[k]; if(e->occupied) { e->invert(); } } } @@ -450,18 +383,18 @@ int MTPGraph::retrieve_one_path(Edge *e, Path *path) { int l = 0, nb_occupied_next; if(path) { - path->nodes[l++] = e->origin_vertex - _vertices; + path->nodes[l++] = int(e->origin_vertex - _vertices); path->length = e->length; } else l++; while(e->terminal_vertex != _sink) { if(path) { - path->nodes[l++] = e->terminal_vertex - _vertices; + path->nodes[l++] = int(e->terminal_vertex - _vertices); path->length += e->length; } else l++; nb_occupied_next = 0; - for(f = e->terminal_vertex->leaving_edges; f; f = f->next_leaving_edge) { + for(f = e->terminal_vertex->leaving_edge_list_root; f; f = f->next_leaving_edge) { if(f->occupied) { nb_occupied_next++; next = f; } } @@ -481,13 +414,87 @@ int MTPGraph::retrieve_one_path(Edge *e, Path *path) { } if(path) { - path->nodes[l++] = e->terminal_vertex - _vertices; + path->nodes[l++] = int(e->terminal_vertex - _vertices); path->length += e->length; } else l++; return l; } +////////////////////////////////////////////////////////////////////// + +static int compare_vertices_on_distance(const void *v1, const void *v2) { + scalar_t delta = + (*((Vertex **) v1))->distance_from_source - + (*((Vertex **) v2))->distance_from_source; + if(delta < 0) return -1; + else if(delta > 0) return 1; + else return 0; +} + +void MTPGraph::compute_dp_ordering() { + Vertex *v; + Edge *e; + int ntv; + + // This method computes for each node the length of the longest link + // from the source, and orders the node in _dp_order according to + // it. It aborts if the graph is not a DAG. + + int *nb_predecessors = new int[_nb_vertices]; + + Vertex **already_processed = _dp_order, **front = _dp_order, **new_front = _dp_order; + + for(int k = 0; k < _nb_vertices; k++) { + nb_predecessors[k] = 0; + } + + for(int k = 0; k < _nb_vertices; k++) { + v = &_vertices[k]; + for(e = v->leaving_edge_list_root; e; e = e->next_leaving_edge) { + ntv = int(e->terminal_vertex - _vertices); + nb_predecessors[ntv]++; + } + } + + for(int k = 0; k < _nb_vertices; k++) { + if(nb_predecessors[k] == 0) { + *(front++) = _vertices + k; + } + } + + scalar_t rank = 1; + while(already_processed < front) { + new_front = front; + while(already_processed < front) { + v = *(already_processed++); + v->distance_from_source = rank; + for(e = v->leaving_edge_list_root; e; e = e->next_leaving_edge) { + ntv = int(e->terminal_vertex - _vertices); + nb_predecessors[ntv]--; + ASSERT(nb_predecessors[ntv] >= 0); + if(nb_predecessors[ntv] == 0) { + *(new_front++) = e->terminal_vertex; + } + } + } + front = new_front; + rank++; + } + + if(already_processed < _dp_order + _nb_vertices) { + cerr << __FILE__ << ": The graph is not a DAG." << endl; + abort(); + } + + delete[] nb_predecessors; + + for(int v = 0; v < _nb_vertices; v++) { _dp_order[v] = &_vertices[v]; } + qsort(_dp_order, _nb_vertices, sizeof(Vertex *), compare_vertices_on_distance); +} + +////////////////////////////////////////////////////////////////////// + void MTPGraph::retrieve_disjoint_paths() { Edge *e; int p, l; @@ -496,14 +503,14 @@ void MTPGraph::retrieve_disjoint_paths() { delete[] paths; nb_paths = 0; - for(e = _source->leaving_edges; e; e = e->next_leaving_edge) { + for(e = _source->leaving_edge_list_root; e; e = e->next_leaving_edge) { if(e->occupied) { nb_paths++; } } paths = new Path *[nb_paths]; p = 0; - for(e = _source->leaving_edges; e; e = e->next_leaving_edge) { + for(e = _source->leaving_edge_list_root; e; e = e->next_leaving_edge) { if(e->occupied) { l = retrieve_one_path(e, 0); paths[p] = new Path(l);