mapstorage.cc
branchgui
changeset 135 84996003b01c
parent 134 82e19031c319
child 151 72f1c33f89d4
     1.1 --- a/mapstorage.cc	Tue Apr 18 22:59:33 2006 +0000
     1.2 +++ b/mapstorage.cc	Thu Apr 27 12:20:09 2006 +0000
     1.3 @@ -268,6 +268,7 @@
     1.4        if (*it == "label")
     1.5        {
     1.6          //std::cout << "read id edgemap" << std::endl;
     1.7 +        read_edge_id = true;
     1.8        }
     1.9        else
    1.10        {
    1.11 @@ -366,6 +367,20 @@
    1.12      }
    1.13    }
    1.14  
    1.15 +  // filter loop edges
    1.16 +  for (EdgeIt e(graph); e != INVALID; ++e)
    1.17 +  {
    1.18 +    if (graph.source(e) == graph.target(e))
    1.19 +    {
    1.20 +      std::cerr << "Removed loop edge " << (*edgemap_storage["label"])[e]
    1.21 +        << " (from " << (*nodemap_storage["label"])[graph.source(e)]
    1.22 +        << ", to " << (*nodemap_storage["label"])[graph.target(e)] << ")."
    1.23 +        << std::endl;
    1.24 +
    1.25 +      graph.erase(e);
    1.26 +    }
    1.27 +  }
    1.28 +
    1.29    return 0;
    1.30  }
    1.31