# HG changeset patch # User alpar # Date 1082912800 0 # Node ID 11d69d6502e46c992654375f0e1d3c3d5cffdc12 # Parent ecebcedd89609b701894f28bd89e6713e94f708e The diffs in src/include/smart_graph.h between 528:529 was merged into this file. diff -r ecebcedd8960 -r 11d69d6502e4 src/work/alpar/smart_graph.h --- a/src/work/alpar/smart_graph.h Sun Apr 25 16:58:05 2004 +0000 +++ b/src/work/alpar/smart_graph.h Sun Apr 25 17:06:40 2004 +0000 @@ -156,7 +156,7 @@ nodes.push_back(NodeT()); //FIXME: Hmmm... for(std::vector * >::iterator i=dyn_node_maps.begin(); - i!=dyn_node_maps.end(); ++i) (**i).add(n.n); + i!=dyn_node_maps.end(); ++i) (**i).add(n); return n; } @@ -468,6 +468,7 @@ SymSmartGraph() : SmartGraph() { } SymSmartGraph(const SmartGraph &_g) : SmartGraph(_g) { } + ///Adds a pair of oppositely directed edges to the graph. Edge addEdge(Node u, Node v) { Edge e = SmartGraph::addEdge(u,v);