Re: [Boost-users] Could the BGL graph algorithms be improvedto automatically work with VertexList = listS graphs?

I retracted this in a subsequent post - it was my problem with a custom vertex property (blush)
From: Daryle Walker
Reply-To: boost-users@lists.boost.org To: Boost Users mailing list Subject: Re: [Boost-users] Could the BGL graph algorithms be improvedto automatically work with VertexList = listS graphs? Date: Thu, 15 Sep 2005 18:05:46 -0400 On 9/15/05 7:05 AM, "Tony Cook"
wrote: Can I add that misuse of graph assignment and a graph copy constructor is possible - corruptible shallow copies are the result. These methods should be given private scope to prevent (mis)use or be correctly implemented
G2 = G1 ; // Compiles but NO you must use boost::graph_copy (G1, G2) instead
If this is accurate, then it should be fixed. Types with abnormal copying semantics can't be used in STL containers or similar contexts.
-- Daryle Walker Mac, Internet, and Video Game Junkie darylew AT hotmail DOT com
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (1)
-
Tony Cook