Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(correct algorithm name)
(Tools)
Line 66: Line 66:
 
== Boost Math Library ==
 
== Boost Math Library ==
 
=== Tools ===
 
=== Tools ===
* [[CPP/Boost/Math/Tools/TOMS748|TOMS748 root finding algorithm]]
+
* [[CPP/Boost/Math/Tools/brent_find_minima|brent_find_minima]] Find a bracketed minimum of a function
 +
* [[CPP/Boost/Math/Tools/TOMS748|TOMS748 root finding algorithm]] Find a bracketed root(zero) of a function

Revision as of 08:08, 14 August 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

I/O

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.

Boost (Generic) Geometry Library

Boost Math Library

Tools