sl@0
|
1 |
/* Boost interval.hpp header file
|
sl@0
|
2 |
*
|
sl@0
|
3 |
* Copyright 2000 Jens Maurer
|
sl@0
|
4 |
* Copyright 2002 Hervé Brönnimann, Guillaume Melquiond, Sylvain Pion
|
sl@0
|
5 |
*
|
sl@0
|
6 |
* Distributed under the Boost Software License, Version 1.0.
|
sl@0
|
7 |
* (See accompanying file LICENSE_1_0.txt or
|
sl@0
|
8 |
* copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
9 |
*/
|
sl@0
|
10 |
|
sl@0
|
11 |
#ifndef BOOST_NUMERIC_INTERVAL_HPP
|
sl@0
|
12 |
#define BOOST_NUMERIC_INTERVAL_HPP
|
sl@0
|
13 |
|
sl@0
|
14 |
#include <boost/limits.hpp>
|
sl@0
|
15 |
#include <boost/numeric/interval/interval.hpp>
|
sl@0
|
16 |
#include <boost/numeric/interval/policies.hpp>
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <boost/numeric/interval/hw_rounding.hpp>
|
sl@0
|
19 |
#include <boost/numeric/interval/rounded_arith.hpp>
|
sl@0
|
20 |
#include <boost/numeric/interval/rounded_transc.hpp>
|
sl@0
|
21 |
#include <boost/numeric/interval/constants.hpp>
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <boost/numeric/interval/checking.hpp>
|
sl@0
|
24 |
#include <boost/numeric/interval/compare.hpp>
|
sl@0
|
25 |
#include <boost/numeric/interval/utility.hpp>
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <boost/numeric/interval/arith.hpp>
|
sl@0
|
28 |
#include <boost/numeric/interval/arith2.hpp>
|
sl@0
|
29 |
#include <boost/numeric/interval/arith3.hpp>
|
sl@0
|
30 |
#include <boost/numeric/interval/transc.hpp>
|
sl@0
|
31 |
|
sl@0
|
32 |
#endif // BOOST_NUMERIC_INTERVAL_HPP
|