Boost logo

Boost :

Subject: Re: [boost] [Boost Graph Library] Having trouble constructing necessary parameters for the isomorphism algorithm
From: Jeremiah Willcock (jewillco_at_[hidden])
Date: 2011-01-05 13:39:12


On Mon, 3 Jan 2011, Alexander Bock wrote:

>
> Isn't that what I'm already doing by passing the following two to the algorithm?:
>
> property_map<UndirectedGraph, int VertexProperty::*>::type indexMap1 = get(&VertexProperty::index, uGraph);
> property_map<UndirectedGraph, int VertexProperty::*>::type indexMap2 = get(&VertexProperty::index, comaparableGraph.GetGraph());
>
> Or maybe I am misunderstanding what you are saying?

In named-parameter mode, you are omitting the vertex_invariant* arguments,
and so you need to provide vertex_index1_map and vertex_index2_map
arguments (using the index maps you show here).

-- Jeremiah Willcock


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk