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

[polynomial] Tidy up headers.

This commit is contained in:
Jeremy W. Murphy
2016-06-23 11:28:23 +10:00
parent 6f5537d273
commit 6f05d647ac
2 changed files with 1 additions and 4 deletions

View File

@@ -17,14 +17,11 @@
#include <boost/config.hpp>
#include <boost/config/suffix.hpp>
#include <boost/function.hpp>
#include <boost/integer.hpp>
#include <boost/lambda/lambda.hpp>
#include <boost/math/tools/rational.hpp>
#include <boost/math/tools/real_cast.hpp>
#include <boost/math/policies/error_handling.hpp>
#include <boost/math/special_functions/binomial.hpp>
#include <boost/math/common_factor_rt.hpp>
#include <boost/mpl/if.hpp>
#include <boost/operators.hpp>
#include <vector>
@@ -663,7 +660,6 @@ polynomial<T> operator - (polynomial<T> a)
return a;
}
template <class T>
bool odd(polynomial<T> const &a)
{

View File

@@ -12,6 +12,7 @@
#endif
#include <boost/math/tools/polynomial.hpp>
#include <boost/math/common_factor_rt.hpp>
namespace boost{ namespace math{ namespace tools{