Cosmetics.
[mtp.git] / mtp_graph.h
index 072eeec..75e48ee 100644 (file)
@@ -26,14 +26,16 @@ class Edge;
 
 class MTPGraph {
   void initialize_work_lengths();
-  void update_work_length();
+  void update_work_lengths();
   void find_shortest_path(Vertex **front, Vertex **new_front);
 
   int _nb_vertices, _nb_edges;
-  Edge *edge_heap;
-  Vertex *vertices;
-  Vertex *source, *sink;
+  Vertex *_source, *_sink;
+  Vertex **_front, **_new_front;
 public:
+  Edge *edges;
+  Vertex *vertices;
+
   MTPGraph(int nb_vertices, int nb_edges, int *from, int *to,
            int source, int sink);
 
@@ -41,6 +43,7 @@ public:
 
   void find_best_paths(scalar_t *lengths, int *result_edge_occupation);
   void print();
+  void print_dot();
 };
 
 #endif