Verbose output in cerr.
[mtp.git] / mtp.cc
diff --git a/mtp.cc b/mtp.cc
index a9388f6..8f37fd6 100644 (file)
--- a/mtp.cc
+++ b/mtp.cc
@@ -22,7 +22,7 @@
 
 // EXAMPLE: ./mtp ./graph2.txt  | dot -T pdf -o- | xpdf -
 
-// #define VERBOSE
+#define VERBOSE
 
 #include <iostream>
 #include <fstream>
@@ -56,11 +56,9 @@ public:
 
 class Vertex {
 public:
-  int id;
-
+  int id, iteration;
   Edge *root_edge;
   scalar_t distance_from_source;
-
   Vertex *pred_vertex;
   Edge *pred_edge;
 
@@ -89,7 +87,6 @@ class Graph {
   Edge *edge_heap;
   Vertex *vertices;
   Vertex *source, *sink;
-
 public:
   Graph(int nb_vertices, int nb_edges, int *from, int *to, scalar_t *lengths,
         int source, int sink);
@@ -170,30 +167,39 @@ void Graph::find_shortest_path(Vertex **front, Vertex **new_front) {
   Vertex *v, *tv;
   scalar_t d;
 
-#ifdef DEBUG
+#ifdef VERBOSE
+  scalar_t residual_error = 0.0;
+#endif
   for(int n = 0; n < nb_vertices; n++) {
     for(Edge *e = vertices[n].root_edge; e; e = e->next) {
       if(e->work_length < 0) {
-        cerr << "DEBUG error in find_shortest_path: Edge fixed lengths have to be positive."
-             << endl;
-        abort();
+#ifdef VERBOSE
+        residual_error -= e->work_length;
+#endif
+        e->work_length = 0.0;
       }
     }
   }
+#ifdef VERBOSE
+  cerr << "residual_error " << residual_error << endl;
 #endif
 
   for(int v = 0; v < nb_vertices; v++) {
     vertices[v].distance_from_source = FLT_MAX;
     vertices[v].pred_vertex = 0;
     vertices[v].pred_edge = 0;
+    vertices[v].iteration = 0;
   }
 
+  int iteration = 0;
+
   int front_size = 0, new_front_size;
   front[front_size++] = source;
   source->distance_from_source = 0;
 
   do {
     new_front_size = 0;
+    iteration++;
     for(int f = 0; f < front_size; f++) {
       v = front[f];
       for(Edge *e = v->root_edge; e; e = e->next) {
@@ -203,7 +209,10 @@ void Graph::find_shortest_path(Vertex **front, Vertex **new_front) {
           tv->distance_from_source = d;
           tv->pred_vertex = v;
           tv->pred_edge = e;
-          new_front[new_front_size++] = tv;
+          if(tv->iteration < iteration) {
+            new_front[new_front_size++] = tv;
+            tv->iteration = iteration;
+          }
         }
       }
     }