lemon/vf2.h
changeset 1410 d9f79b81ef6c
parent 1409 c89884c1737b
child 1413 e68f0ef37e77
     1.1 --- a/lemon/vf2.h	Sat Oct 07 15:46:28 2017 +0200
     1.2 +++ b/lemon/vf2.h	Sat Oct 07 15:48:00 2017 +0200
     1.3 @@ -94,9 +94,9 @@
     1.4    ///use cases.
     1.5    ///
     1.6    ///\tparam G1 The type of the graph to be embedded.
     1.7 -  ///The default type is \ref ListDigraph.
     1.8 +  ///The default type is \ref ListGraph.
     1.9    ///\tparam G2 The type of the graph g1 will be embedded into.
    1.10 -  ///The default type is \ref ListDigraph.
    1.11 +  ///The default type is \ref ListGraph.
    1.12    ///\tparam M The type of the NodeMap storing the mapping.
    1.13    ///By default, it is G1::NodeMap<G2::Node>
    1.14    ///\tparam NEQ A bool-valued binary functor determinining whether a node is
    1.15 @@ -106,8 +106,8 @@
    1.16  #ifdef DOXYGEN
    1.17    template<class G1, class G2, class M, class NEQ >
    1.18  #else
    1.19 -  template<class G1=ListDigraph,
    1.20 -           class G2=ListDigraph,
    1.21 +  template<class G1 = ListGraph,
    1.22 +           class G2 = ListGraph,
    1.23             class M = typename G1::template NodeMap<G2::Node>,
    1.24             class NEQ = bits::vf2::AlwaysEq >
    1.25  #endif