
Look at the following code, as you it print out:
-----------
name: graph
name sg1: subgraph 3
name sg2: subgraph 3
name sg3: subgraph 3
-----------
when I waiting for
-----------
name: graph
name sg1: subgraph 1
name sg2: subgraph 2
name sg3: subgraph 3
-----------
WHY?
Is this a bug in the library?
#include <string>
#include <iostream>
using namespace std;
#include

On Jul 14, 2005, at 4:50 PM, odisseo@despammed.com wrote:
Look at the following code, as you it print out:
----------- name: graph name sg1: subgraph 3 name sg2: subgraph 3 name sg3: subgraph 3 -----------
when I waiting for
----------- name: graph name sg1: subgraph 1 name sg2: subgraph 2 name sg3: subgraph 3 -----------
WHY?
get_property on a subgraph always retrieves the property at the root of the subgraph hierarchy.
Is this a bug in the library?
Hmmm, good question. I think the behavior you expected is probably the correct behavior. It's fixed for the next Boost release. Doug
participants (2)
-
Doug Gregor
-
odisseo@despammed.com