Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Boost Graph Library (BGL))
(Boost Graph Library (BGL))
Line 18: Line 18:
 
* [[CPP/Boost/BGL/BundledProperties|Bundled properties]]
 
* [[CPP/Boost/BGL/BundledProperties|Bundled properties]]
 
* [[CPP/Boost/BGL/AdjacentVertices|Get a list of neighboring (adjacent) vertices]]
 
* [[CPP/Boost/BGL/AdjacentVertices|Get a list of neighboring (adjacent) vertices]]
 +
* [[CPP/Boost/BGL/DirectedGraph|Directed graphs only give access to out edges]]
 +
* [[CPP/Boost/BGL/BidirectionalGraph|Bidirectional graphs give access to both in and out edges]]

Revision as of 11:41, 27 January 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)