
6 Dec
2006
6 Dec
'06
11:23 p.m.
So true. Thought brevity was more important. #include <iostream> #include <fstream> #include <vector> #include <map> #include <exception> #include <boost/graph/adjacency_list.hpp> #include <boost/graph/graphviz.hpp> Plus, my graph definition: typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::bidirectionalS, boost::property<boost::vertex_name_t,std::string> > Graph; Jens Müller wrote:
Jeffrey Holle schrieb:
Since no one replied to this message, I'll answer it myself. Yes, to both questions! This is the code that demonstrates:
There are obviously includes missing in there.