X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_graph.cc;h=8c79416de072436ebd17ad2b0d526e16c3180111;hb=8db91faf223fcb893b589c7b85d4ef5e03ffb6ce;hp=b83871d4df3d7065a325fb552760987d009df5cb;hpb=340972b07aa40e812a99ecd2bced570cdd5eed84;p=mtp.git diff --git a/mtp_graph.cc b/mtp_graph.cc index b83871d..8c79416 100644 --- a/mtp_graph.cc +++ b/mtp_graph.cc @@ -20,6 +20,7 @@ #include #include +#include using namespace std; @@ -82,6 +83,17 @@ void Vertex::del_edge(Edge *e) { ////////////////////////////////////////////////////////////////////// +Path::Path(int l) { + length = l; + nodes = new int[length]; +} + +Path::~Path() { + delete[] nodes; +} + +////////////////////////////////////////////////////////////////////// + MTPGraph::MTPGraph(int nb_vertices, int nb_edges, int *from, int *to, int source, int sink) { @@ -306,6 +318,38 @@ void MTPGraph::find_best_paths(scalar_t *lengths, int *result_edge_occupation) { } } + +int MTPGraph::retrieve_one_path(Edge *e, int *nodes) { + Edge *f, *next; + int l = 0; + + if(nodes) { nodes[l++] = e->origin_vertex->id; } + else l++; + + while(e->terminal_vertex != _sink) { + if(nodes) { nodes[l++] = e->terminal_vertex->id; } + else l++; + int nb_choices = 0; + for(f = e->terminal_vertex->leaving_edges; f; f = f->next_leaving_edge) { + if(f->occupied) { nb_choices++; next = f; } + if(nb_choices == 0) { + cerr << "Non-sink path end point?!" << endl; + abort(); + } + if(nb_choices > 1) { + cerr << "Non node-disjoint path, can not retrieve." << endl; + abort(); + } + } + e = next; + } + + if(nodes) { nodes[l++] = e->terminal_vertex->id; } + else l++; + + return l; +} + void MTPGraph::retrieve_paths() { Edge *e; @@ -322,7 +366,9 @@ void MTPGraph::retrieve_paths() { int p = 0; for(e = _source->leaving_edges; e; e = e->next_leaving_edge) { if(e->occupied) { - paths[p] = new Path(); + int l = retrieve_one_path(e, 0); + paths[p] = new Path(l); + retrieve_one_path(e, paths[p]->nodes); p++; } }