$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [Graph] Issue with remove_edge function and subgraphs
From: Sergey Mitsyn (svm_at_[hidden])
Date: 2010-05-10 12:17:43
Hello Marcus,
The documentation says that create_subgraph returns subgraph<Graph>&,
and in the example it is stored in Graph&.
>
> Graph subG = G.create_subgraph();
>
this works for me:
Graph& subG = G.create_subgraph();
-------
Sergey Mitsyn.