Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Boost Graph Library (BGL))
(Visualization)
Line 51: Line 51:
  
 
* [[CPP/Boost/BGL/InvisibleEdges|Create a graph with invisible edges]]
 
* [[CPP/Boost/BGL/InvisibleEdges|Create a graph with invisible edges]]
 +
 +
=== Wish List ===
 +
Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.
 +
* [[CPP/WishList/Boost/BGL/RelabelInputVertices|Relabel input vertices read from a dot file so they match the labels used in the file]]

Revision as of 14:53, 26 June 2011

The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.

Boost Graph Library (BGL)

Basics

  • Create a graph - This is the most fundamental process of using BGL - creating a graph. This example explains 3 methods of creating a graph, using adjacency_list directly, and also using the directed_graph and undirected_graph subclasses.

Algorithms

Visualization

Wish List

Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.