# HG changeset patch # User Alpar Juttner # Date 2008-11-07 08:18:37 # Node ID 164fe3abc0249a97d773f6cfa7fd0d3c623b88a9 # Parent 02bc940cbb0e42168ae90b3d067d1f128845eacc # Parent 00c8843d491d53848439decbb302abdb8525f173 Merge diff --git a/lemon/smart_graph.h b/lemon/smart_graph.h --- a/lemon/smart_graph.h +++ b/lemon/smart_graph.h @@ -305,7 +305,9 @@ Node b = addNode(); nodes[b._id].first_out=nodes[n._id].first_out; nodes[n._id].first_out=-1; - for(int i=nodes[b._id].first_out;i!=-1;i++) arcs[i].source=b._id; + for(int i=nodes[b._id].first_out; i!=-1; i=arcs[i].next_out) { + arcs[i].source=b._id; + } if(connect) addArc(n,b); return b; }