write_graphviz не работает, когда у вершины есть свойство - PullRequest
1 голос
/ 20 октября 2019

Я изучаю 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 {
}

1 Ответ

1 голос
/ 21 октября 2019

Непонятно, что вы по-другому, но вот отдельный пример, основанный на вышесказанном:

Live On Wandbox

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graphviz.hpp>

struct VertexProps { std::string name; };
struct EdgeProps { double weight; };

using Graph = boost::adjacency_list<boost::setS, boost::vecS, boost::directedS, VertexProps, EdgeProps>;

int main(){
    Graph g;

    auto vertex = add_vertex({"MyVertexName"}, g);

    write_graphviz(std::cout, g,
        make_label_writer(get(&VertexProps::name, g)),
        make_label_writer(get(&EdgeProps::weight, g)));
}

Какие отпечатки

digraph G {
0[label=MyVertexName];
}
...