Hi,
Recently,I tried to use Boost.Graph's VF2 implementation and after having
played few days with this module, I was wondering if this implementation
supports "adjacency_matrix" model as explained by the documentation (cf.
http://www.boost.org/doc/libs/1_55_0/libs/graph/doc/vf2_sub_graph_iso.html).
To demonstrate my point, you will find hereafter an C++ example extracted
from the Boost.Graph's documentation. If the macro "ADJACENCY_LIST_STRUCT"
is commented out, this code can't be compiled w/ VS2012 aka VC11 because
the static assertion @line 837 of "boost/graph/vf2_sub_graph_iso.hpp" is
triggered.
My questions are:
- Does this VF2 implementation supports "adjacency_matrix" model?
- Is there any patch for supporting this model of graph?
FYI: If I comment two static assertations in file
"boost/graph/vf2_sub_graph_iso.hpp", at line 837 and line 843, the code
compiles and runs correctly for "adjacency_matrix" model.
#include