2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-27 07:02:08 +00:00

Lots of minor fixes: mostly configuration issues.

Change to use std::tuple when available.
Add two new distributions: inverse gamma and inverse chi squared.


[SVN r65749]
This commit is contained in:
John Maddock
2010-10-04 15:17:21 +00:00
parent 94f09f4ea2
commit 0bc7181e61
406 changed files with 8464 additions and 3527 deletions

View File

@@ -1,6 +1,6 @@
// find_root_example.cpp
// Copyright Paul A. Bristow 2007.
// Copyright Paul A. Bristow 2007, 2010.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0.
@@ -29,10 +29,11 @@ First we need some includes to access the normal distribution
using std::setw; using std::setprecision;
#include <limits>
using std::numeric_limits;
#include <stdexcept>
using std::exception;
//] //[/root_find1]
int main()
{
cout << "Example: Normal distribution, root finding.";