Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Visualization)
(Wish List)
Line 54: Line 54:
 
=== Wish List ===
 
=== 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.
 
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 15:17, 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.