lemon/smart_graph.h
changeset 1729 06f939455cb1
parent 1718 6a958ab38386
child 1768 1e2e0238e7c8
     1.1 --- a/lemon/smart_graph.h	Fri Oct 14 11:03:40 2005 +0000
     1.2 +++ b/lemon/smart_graph.h	Mon Oct 17 10:28:48 2005 +0000
     1.3 @@ -315,13 +315,7 @@
     1.4      ///\todo It could be implemented in a bit faster way.
     1.5      Node split(Node n, bool connect = true) 
     1.6      {
     1.7 -      for (OutEdgeIt it(*this, n); it != INVALID; ++it) {
     1.8 -	getNotifier(Edge()).signalChange(it);
     1.9 -      }
    1.10        Node b = _split(n,connect);
    1.11 -      for (OutEdgeIt it(*this, b); it != INVALID; ++it) {
    1.12 -	getNotifier(Edge()).commitChange(it);
    1.13 -      }
    1.14        return b;
    1.15      }
    1.16