lemon/smart_graph.h
changeset 317 64f8f7cc6168
parent 280 e7f8647ce760
child 335 00c8843d491d
     1.1 --- a/lemon/smart_graph.h	Wed Oct 08 17:05:01 2008 +0100
     1.2 +++ b/lemon/smart_graph.h	Thu Oct 09 10:09:44 2008 +0200
     1.3 @@ -365,7 +365,7 @@
     1.4        ///Constructor that immediately makes a snapshot
     1.5  
     1.6        ///This constructor immediately makes a snapshot of the digraph.
     1.7 -      ///\param _g The digraph we make a snapshot of.
     1.8 +      ///\param graph The digraph we make a snapshot of.
     1.9        Snapshot(SmartDigraph &graph) : _graph(&graph) {
    1.10          node_num=_graph->nodes.size();
    1.11          arc_num=_graph->arcs.size();
    1.12 @@ -377,7 +377,7 @@
    1.13        ///
    1.14        ///This function can be called more than once. In case of a repeated
    1.15        ///call, the previous snapshot gets lost.
    1.16 -      ///\param _g The digraph we make the snapshot of.
    1.17 +      ///\param graph The digraph we make the snapshot of.
    1.18        void save(SmartDigraph &graph)
    1.19        {
    1.20          _graph=&graph;
    1.21 @@ -775,7 +775,7 @@
    1.22        ///Constructor that immediately makes a snapshot
    1.23  
    1.24        ///This constructor immediately makes a snapshot of the digraph.
    1.25 -      ///\param g The digraph we make a snapshot of.
    1.26 +      ///\param graph The digraph we make a snapshot of.
    1.27        Snapshot(SmartGraph &graph) {
    1.28          graph.saveSnapshot(*this);
    1.29        }
    1.30 @@ -786,7 +786,7 @@
    1.31        ///
    1.32        ///This function can be called more than once. In case of a repeated
    1.33        ///call, the previous snapshot gets lost.
    1.34 -      ///\param g The digraph we make the snapshot of.
    1.35 +      ///\param graph The digraph we make the snapshot of.
    1.36        void save(SmartGraph &graph)
    1.37        {
    1.38          graph.saveSnapshot(*this);