The diffs in src/include/smart_graph.h between 528:529 was merged into
authoralpar
Sun, 25 Apr 2004 17:06:40 +0000
changeset 39911d69d6502e4
parent 398 ecebcedd8960
child 400 cb377609cf1d
The diffs in src/include/smart_graph.h between 528:529 was merged into
this file.
src/work/alpar/smart_graph.h
     1.1 --- a/src/work/alpar/smart_graph.h	Sun Apr 25 16:58:05 2004 +0000
     1.2 +++ b/src/work/alpar/smart_graph.h	Sun Apr 25 17:06:40 2004 +0000
     1.3 @@ -156,7 +156,7 @@
     1.4        nodes.push_back(NodeT()); //FIXME: Hmmm...
     1.5  
     1.6        for(std::vector<DynMapBase<Node> * >::iterator i=dyn_node_maps.begin();
     1.7 -	  i!=dyn_node_maps.end(); ++i) (**i).add(n.n);
     1.8 +	  i!=dyn_node_maps.end(); ++i) (**i).add(n);
     1.9  
    1.10        return n;
    1.11      }
    1.12 @@ -468,6 +468,7 @@
    1.13  
    1.14      SymSmartGraph() : SmartGraph() { }
    1.15      SymSmartGraph(const SmartGraph &_g) : SmartGraph(_g) { }
    1.16 +    ///Adds a pair of oppositely directed edges to the graph.
    1.17      Edge addEdge(Node u, Node v)
    1.18      {
    1.19        Edge e = SmartGraph::addEdge(u,v);