2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-25 18:32:08 +00:00

Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]).

[SVN r68168]
This commit is contained in:
Steven Watanabe
2011-01-15 08:11:51 +00:00
parent a52fce70a8
commit 3524499fc0
99 changed files with 455 additions and 536 deletions

View File

@@ -59,12 +59,11 @@ and we need some std library iostream, of course.
using ::boost::math::cdf; // Cumulative density function.
using ::boost::math::quantile;
#include <ios>
#include <iostream>
using std::cout; using std::endl;
using std::noshowpoint; using std::fixed; using std::right; using std::left;
#include <boost/detail/iomanip.hpp>
using boost::detail::setprecision; using boost::detail::setw;
#include <iomanip>
using std::setprecision; using std::setw;
#include <limits>
using std::numeric_limits;
@@ -376,7 +375,7 @@ Finally, we can tabulate the probability for the last sale being exactly on each
cout.precision(5);
for (int i = (int)sales_quota; i < all_houses+1; i++)
{
cout << left << boost::detail::setw(3) << i << " " << boost::detail::setw(8) << cdf(nb, i - sales_quota) << endl;
cout << left << setw(3) << i << " " << setw(8) << cdf(nb, i - sales_quota) << endl;
}
cout << endl;
/*`