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:
@@ -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.";
|
||||
|
||||
Reference in New Issue
Block a user