pch.hpp 636 B

12345678910111213141516171819202122
  1. // Copyright John Maddock 2008.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifdef BOOST_BUILD_PCH_ENABLED
  6. #define BOOST_MATH_OVERFLOW_ERROR_POLICY ignore_error
  7. #include <boost/math/special_functions.hpp>
  8. #include <boost/math/distributions.hpp>
  9. #include <boost/math/tools/test.hpp>
  10. #include <boost/math/tools/stats.hpp>
  11. #include <boost/type_traits.hpp>
  12. #include <boost/array.hpp>
  13. #include "functor.hpp"
  14. #include "handle_test_result.hpp"
  15. #include <iostream>
  16. #include <iomanip>
  17. #endif