Top "Boost-graph" questions

Boost.

Modifying vertex properties in a Boost::Graph

I am trying to figure out how to use boost::graph to store some information. However, there is information I …

c++ boost graph properties boost-graph
Get specific edge with boost::graph

I'm using boost::graph and I have two vertex_descriptors. What is the quickest way to get the edge between …

c++ boost boost-graph
Graph visualization (boost graph)

I have C++ program using boost graph library. I wonder if there is any way to visualize the graph (nodes …

c++ graph plot visualization boost-graph
Find Boost BGL vertex by a key

I am looking for a way to access vertex properties by using a key instead of vertex reference itself. For …

c++ boost graph boost-graph
Iterating over edges of a graph using range-based for

I have a representation of a graph as a std::vector<std::unordered_set<unsigned>> neighbors, …

c++ graph c++11 foreach boost-graph
Use a Graph Library/Node Network Library or Write My Own?

I'm trying to decide between going with a pre-made graph/node network library or to roll my own. I'm implementing …

c++ templates boost graph boost-graph