X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=mtp_graph.h;fp=mtp_graph.h;h=64308b9c000d6e45de0372080fb504ea39880436;hp=33a29f51b690bc510bff5a46343ff5a22950d2bc;hb=0a78398c86517c7c6224bd8f4f1b3950fed245b9;hpb=2228dec6631697204466df7e45b7ab3786f6308a diff --git a/mtp_graph.h b/mtp_graph.h index 33a29f5..64308b9 100644 --- a/mtp_graph.h +++ b/mtp_graph.h @@ -61,7 +61,7 @@ class MTPGraph { // Follows the path starting on edge e and returns the number of // nodes to reach the sink. If path is non-null, stores in it the // nodes met along the path, and computes path->length properly. - int retrieve_one_path(Edge *e, Path *path); + int retrieve_one_path(Edge *e, Path *path, int *used_edges); int _nb_vertices, _nb_edges; Vertex *_source, *_sink; @@ -94,7 +94,10 @@ public: void find_best_paths(scalar_t *lengths); // Retrieve the paths corresponding to the occupied edges, and save - // the result in the nb_paths and paths fields. + // the result in the nb_paths and paths fields. If the paths are not + // node-disjoint, there are multiple families of paths that + // "explain" the edge occupancies, and this method picks one of them + // arbitrarily. void retrieve_disjoint_paths(); void print(ostream *os);