lemon/vf2pp.h
changeset 1410 d9f79b81ef6c
parent 1409 c89884c1737b
child 1411 b79ff94e27d9
     1.1 --- a/lemon/vf2pp.h	Sat Oct 07 15:46:28 2017 +0200
     1.2 +++ b/lemon/vf2pp.h	Sat Oct 07 15:48:00 2017 +0200
     1.3 @@ -76,9 +76,9 @@
     1.4    ///more convenient in most 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 M1 The type of the NodeMap storing the integer node labels of G1.
    1.15 @@ -92,8 +92,8 @@
    1.16  #ifdef DOXYGEN
    1.17    template<class G1, class G2, class M, class M1, class M2 >
    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 M1 = typename G1::template NodeMap<int>,
    1.25             class M2 = typename G2::template NodeMap<int> >