# HG changeset patch # User Peter Kovacs # Date 1507384080 -7200 # Node ID d9f79b81ef6c6a4f96b5e7e35150775b099aac63 # Parent c89884c1737b4b54e16d5c704a99f14df639d777 Change the default graph type of Vf2 and Vf2pp (#597) diff -r c89884c1737b -r d9f79b81ef6c lemon/vf2.h --- a/lemon/vf2.h Sat Oct 07 15:46:28 2017 +0200 +++ b/lemon/vf2.h Sat Oct 07 15:48:00 2017 +0200 @@ -94,9 +94,9 @@ ///use cases. /// ///\tparam G1 The type of the graph to be embedded. - ///The default type is \ref ListDigraph. + ///The default type is \ref ListGraph. ///\tparam G2 The type of the graph g1 will be embedded into. - ///The default type is \ref ListDigraph. + ///The default type is \ref ListGraph. ///\tparam M The type of the NodeMap storing the mapping. ///By default, it is G1::NodeMap ///\tparam NEQ A bool-valued binary functor determinining whether a node is @@ -106,8 +106,8 @@ #ifdef DOXYGEN template #else - template, class NEQ = bits::vf2::AlwaysEq > #endif diff -r c89884c1737b -r d9f79b81ef6c lemon/vf2pp.h --- a/lemon/vf2pp.h Sat Oct 07 15:46:28 2017 +0200 +++ b/lemon/vf2pp.h Sat Oct 07 15:48:00 2017 +0200 @@ -76,9 +76,9 @@ ///more convenient in most use cases. /// ///\tparam G1 The type of the graph to be embedded. - ///The default type is \ref ListDigraph. + ///The default type is \ref ListGraph. ///\tparam G2 The type of the graph g1 will be embedded into. - ///The default type is \ref ListDigraph. + ///The default type is \ref ListGraph. ///\tparam M The type of the NodeMap storing the mapping. ///By default, it is G1::NodeMap ///\tparam M1 The type of the NodeMap storing the integer node labels of G1. @@ -92,8 +92,8 @@ #ifdef DOXYGEN template #else - template, class M1 = typename G1::template NodeMap, class M2 = typename G2::template NodeMap >