X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=mtp_graph.cc;h=6ce84c4d4c4622f8788ddf5ffd46bcdbf5fa13f1;hp=c456601d2c76bb9cc5ef939d561cda3bfaad44dc;hb=90a6bc97162d199e3b840bf178f49854e5df91fa;hpb=2862b6274624729936ac877247029409a60137cf diff --git a/mtp_graph.cc b/mtp_graph.cc index c456601..6ce84c4 100644 --- a/mtp_graph.cc +++ b/mtp_graph.cc @@ -24,7 +24,6 @@ #include "mtp_graph.h" -// #include #include using namespace std; @@ -161,9 +160,6 @@ void MTPGraph::print_dot(ostream *os) { (*os) << " " << _sink->id << " [peripheries=2];" << endl; for(int k = 0; k < _nb_edges; k++) { Edge *e = _edges + k; - // (*os) << " " << e->origin_vertex->id << " -> " << e->terminal_vertex->id - // << ";" - // << endl; (*os) << " " << e->origin_vertex->id << " -> " << e->terminal_vertex->id << " ["; if(e->occupied) {