2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Fixed lots of "inspect" issues: bad hyperlinks, tabs in source and missing licenses.

Tweaked some error levels again.

[SVN r40079]
This commit is contained in:
John Maddock
2007-10-16 09:32:28 +00:00
parent 135081f081
commit 4ba0027365
164 changed files with 1333 additions and 781 deletions

View File

@@ -48,15 +48,15 @@ We'll begin our sample program with the needed includes:
// Boost
#include <boost/math/distributions/students_t.hpp>
using boost::math::students_t; // Probability of students_t(df, t).
using boost::math::students_t; // Probability of students_t(df, t).
// std
#include <iostream>
using std::cout;
using std::endl;
using std::cout;
using std::endl;
#include <stdexcept>
using std::exception;
using std::exception;
/*`