Properly puts the edge occupancy back to 0 when starting tracking.
[mtp.git] / mtp_graph.h
index 5feb20f..ddf7162 100644 (file)
 #ifndef MTP_GRAPH_H
 #define MTP_GRAPH_H
 
+#include <iostream>
+
+using namespace std;
+
 #include "misc.h"
 
 class Vertex;
@@ -60,8 +64,8 @@ public:
   void find_best_paths(scalar_t *lengths);
   void retrieve_disjoint_paths();
 
-  void print();
-  void print_dot();
+  void print(ostream *os);
+  void print_dot(ostream *os);
 };
 
 #endif