Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / numeric / ublas / benchmarks / bench4 / bench43.cpp
1 //
2 //  Copyright (c) 2000-2002
3 //  Joerg Walter, Mathias Koch
4 //
5 //  Distributed under the Boost Software License, Version 1.0. (See
6 //  accompanying file LICENSE_1_0.txt or copy at
7 //  http://www.boost.org/LICENSE_1_0.txt)
8 //
9 //  The authors gratefully acknowledge the support of
10 //  GeNeSys mbH & Co. KG in producing this work.
11 //
12
13 #include <boost/numeric/interval.hpp>
14 #include <boost/numeric/interval/io.hpp>
15 #include "../bench1/bench13.cpp"
16
17
18 #ifdef USE_FLOAT
19 template struct bench_3<boost::numeric::interval<float>, 3>;
20 template struct bench_3<boost::numeric::interval<float>, 10>;
21 template struct bench_3<boost::numeric::interval<float>, 30>;
22 template struct bench_3<boost::numeric::interval<float>, 100>;
23 #endif
24
25 #ifdef USE_DOUBLE
26 template struct bench_3<boost::numeric::interval<double>, 3>;
27 template struct bench_3<boost::numeric::interval<double>, 10>;
28 template struct bench_3<boost::numeric::interval<double>, 30>;
29 template struct bench_3<boost::numeric::interval<double>, 100>;
30 #endif
31
32 #ifdef USE_BOOST_COMPLEX
33 #ifdef USE_FLOAT
34 template struct bench_3<boost::complex<boost::numeric::interval<float> >, 3>;
35 template struct bench_3<boost::complex<boost::numeric::interval<float> >, 10>;
36 template struct bench_3<boost::complex<boost::numeric::interval<float> >, 30>;
37 template struct bench_3<boost::complex<boost::numeric::interval<float> >, 100>;
38 #endif
39
40 #ifdef USE_DOUBLE
41 template struct bench_3<boost::complex<boost::numeric::interval<double> >, 3>;
42 template struct bench_3<boost::complex<boost::numeric::interval<double> >, 10>;
43 template struct bench_3<boost::complex<boost::numeric::interval<double> >, 30>;
44 template struct bench_3<boost::complex<boost::numeric::interval<double> >, 100>;
45 #endif
46 #endif