]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/numeric/ublas/benchmarks/bench4/bench41.cpp
Add patch for failing prerm scripts
[ceph.git] / ceph / src / boost / libs / numeric / ublas / benchmarks / bench4 / bench41.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/bench11.cpp"
16
17
18 #ifdef USE_FLOAT
19 template struct bench_1<boost::numeric::interval<float>, 3>;
20 template struct bench_1<boost::numeric::interval<float>, 10>;
21 template struct bench_1<boost::numeric::interval<float>, 30>;
22 template struct bench_1<boost::numeric::interval<float>, 100>;
23 #endif
24
25 #ifdef USE_DOUBLE
26 template struct bench_1<boost::numeric::interval<double>, 3>;
27 template struct bench_1<boost::numeric::interval<double>, 10>;
28 template struct bench_1<boost::numeric::interval<double>, 30>;
29 template struct bench_1<boost::numeric::interval<double>, 100>;
30 #endif
31
32 #ifdef USE_BOOST_COMPLEX
33 #ifdef USE_FLOAT
34 template struct bench_1<boost::complex<boost::numeric::interval<float> >, 3>;
35 template struct bench_1<boost::complex<boost::numeric::interval<float> >, 10>;
36 template struct bench_1<boost::complex<boost::numeric::interval<float> >, 30>;
37 template struct bench_1<boost::complex<boost::numeric::interval<float> >, 100>;
38 #endif
39
40 #ifdef USE_DOUBLE
41 template struct bench_1<boost::complex<boost::numeric::interval<double> >, 3>;
42 template struct bench_1<boost::complex<boost::numeric::interval<double> >, 10>;
43 template struct bench_1<boost::complex<boost::numeric::interval<double> >, 30>;
44 template struct bench_1<boost::complex<boost::numeric::interval<double> >, 100>;
45 #endif
46 #endif