Я изучаю boost :: graph и пытаюсь добавить свойство name в Vertex. Однако после этого write_graphviz ничего не сохраняет (без этого свойства оно работает).
Заголовочный файл:
struct VertexProps
{
std::string name;
};
struct EdgeProps
{
double weight;
};
using Graph = boost::adjacency_list<boost::setS, boost::vecS, boost::directedS, VertexProps, EdgeProps>;
using Vertex = boost::adjacency_list<>::vertex_descriptor;
using Edge = std::pair<boost::adjacency_list<>::edge_descriptor, bool>;
using EdgeList = std::pair<boost::adjacency_list<>::edge_iterator,
boost::adjacency_list<>::edge_iterator>;
Cpp-файл:
Vertex vertex = boost::add_vertex({std::move(vertexName)}, g);
std::filebuf fb;
fb.open("output.txt", std::ios::out);
std::ostream os(&fb);
write_graphviz(os, g, boost::make_label_writer(get(&VertexProps::name, g)), boost::make_label_writer(get(&EdgeProps::weight, g)));
fb.close();
Файл должен содержать график, однако я вижу только:
digraph G {
}