Update.
[mtp.git] / mtp.cc
diff --git a/mtp.cc b/mtp.cc
index 044fefa..286597d 100644 (file)
--- a/mtp.cc
+++ b/mtp.cc
@@ -22,8 +22,6 @@
 
 // EXAMPLE: ./mtp ./graph2.txt  | dot -T pdf -o- | xpdf -
 
-#define VERBOSE
-
 #include <iostream>
 #include <fstream>
 #include <cmath>
@@ -44,6 +42,7 @@ void find_best_paths(int nb_vertices,
                      int *result_edge_occupation) {
   MTPGraph graph(nb_vertices, nb_edges, ea, eb, source, sink);
   graph.find_best_paths(el, result_edge_occupation);
+  graph.print_dot();
 }
 
 //////////////////////////////////////////////////////////////////////