Doc fix
authordeba
Thu, 19 Apr 2007 15:07:03 +0000
changeset 242277ed2b97abbd
parent 2421 160ebfb944a9
child 2423 02fedd6652c6
Doc fix
lemon/graph_adaptor.h
lemon/ugraph_adaptor.h
     1.1 --- a/lemon/graph_adaptor.h	Wed Apr 18 16:35:04 2007 +0000
     1.2 +++ b/lemon/graph_adaptor.h	Thu Apr 19 15:07:03 2007 +0000
     1.3 @@ -805,7 +805,7 @@
     1.4    ///This adaptor specializes SubGraphAdaptor in the way that only
     1.5    ///the node-set 
     1.6    ///can be filtered. In usual case the checked parameter is true, we get the
     1.7 -  ///induced subgraph. But if the checked parameter is false then we can only
     1.8 +  ///induced subgraph. But if the checked parameter is false then we can
     1.9    ///filter only isolated nodes.
    1.10    ///\author Marton Makai
    1.11    template<typename Graph, typename NodeFilterMap, bool checked = true>
     2.1 --- a/lemon/ugraph_adaptor.h	Wed Apr 18 16:35:04 2007 +0000
     2.2 +++ b/lemon/ugraph_adaptor.h	Thu Apr 19 15:07:03 2007 +0000
     2.3 @@ -790,12 +790,11 @@
     2.4    ///
     2.5    /// \brief An adaptor for hiding nodes from an undirected graph.
     2.6    ///
     2.7 -  /// An adaptor for hiding nodes from an undirected graph.
     2.8 -  /// This adaptor specializes SubUGraphAdaptor in the way that only
     2.9 -  /// the node-set 
    2.10 -  /// can be filtered. In usual case the checked parameter is true, we get the
    2.11 -  /// induced subgraph. But if the checked parameter is false then we can only
    2.12 -  /// filter only isolated nodes.
    2.13 +  /// An adaptor for hiding nodes from an undirected graph.  This
    2.14 +  /// adaptor specializes SubUGraphAdaptor in the way that only the
    2.15 +  /// node-set can be filtered. In usual case the checked parameter is
    2.16 +  /// true, we get the induced subgraph. But if the checked parameter
    2.17 +  /// is false then we can filter only isolated nodes.
    2.18    template<typename _UGraph, typename NodeFilterMap, bool checked = true>
    2.19    class NodeSubUGraphAdaptor : 
    2.20      public SubUGraphAdaptor<_UGraph, NodeFilterMap,