lemon/bits/vf2_internals.h
changeset 1407 76349d8212d3
parent 1405 3feba0ea1bda
     1.1 --- a/lemon/bits/vf2_internals.h	Sat Oct 07 00:14:05 2017 +0200
     1.2 +++ b/lemon/bits/vf2_internals.h	Sat Oct 07 03:18:49 2017 +0200
     1.3 @@ -26,7 +26,7 @@
     1.4  namespace lemon {
     1.5    ///\ingroup graph_isomorphism
     1.6    ///The \ref Vf2 "VF2" algorithm is capable of finding different kind of
     1.7 -  ///embeddings, this enum specifies its type.
     1.8 +  ///graph embeddings, this enum specifies their types.
     1.9    ///
    1.10    ///See \ref graph_isomorphism for a more detailed description.
    1.11    enum MappingType {
    1.12 @@ -35,13 +35,12 @@
    1.13      /// Induced subgraph isomorphism
    1.14      INDUCED = 1,
    1.15      /// Graph isomorphism
    1.16 -
    1.17 -    /// If the two graph has the same number of nodes, than it is
    1.18 +    ///
    1.19 +    /// If the two graphs have the same number of nodes, than it is
    1.20      /// equivalent to \ref INDUCED, and if they also have the same
    1.21      /// number of edges, then it is also equivalent to \ref SUBGRAPH.
    1.22      ///
    1.23 -    /// However, using this setting is faster than the other two
    1.24 -    /// options.
    1.25 +    /// However, using this setting is faster than the other two options.
    1.26      ISOMORPH = 2
    1.27    };
    1.28  }