I am running into a problem compiling code that uses write_graphviz
which used to work e.g. for gcc 3.3 and boost versions prior to 1.31.
As I am trying to move forward I am testing different gcc and boost
versions.
Here is the example code:
----------------------------------------------------------------
#include "boost/graph/adjacency_list.hpp"
#include "boost/graph/graphviz.hpp"
class BoostVertexContentType {
public:
enum { num=100 };
typedef boost::vertex_property_tag kind;
};
class BoostEdgeContentType {
public:
enum { num=101 };
typedef boost::edge_property_tag kind;
};
int main(void) {
boost::adjacency_list<
boost::listS,
boost::listS,
boost::bidirectionalS,
boost::property