Trying to set graph properties on reverse graph does not seem to be working.
I am using boost 1.40.0
A simple program where we set graph_name to "graph" on a reverse graph does
not work
int main()
{
using namespace boost;
using std::string;
typedef adjacency_list,
property > graph_t;
typedef reverse_graph reverse_graph_t;
graph_t g;
reverse_graph_t sg = reverse_graph_t(g);
std::string Name = "graph";
set_property(sg, graph_name, Name) ;
std::cout << "name: " << get_property(sg, graph_name) << std::endl;
return 1;
}
Name comes out to be empty in this case.
any ideas???
--
View this message in context: http://old.nabble.com/issues-with-setting-properties-on-reverse-graph-tp2638...
Sent from the Boost - Users mailing list archive at Nabble.com.