]> git.proxmox.com Git - ceph.git/blame - 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
CommitLineData
7c673cae
FG
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
19template struct bench_1<boost::numeric::interval<float>, 3>;
20template struct bench_1<boost::numeric::interval<float>, 10>;
21template struct bench_1<boost::numeric::interval<float>, 30>;
22template struct bench_1<boost::numeric::interval<float>, 100>;
23#endif
24
25#ifdef USE_DOUBLE
26template struct bench_1<boost::numeric::interval<double>, 3>;
27template struct bench_1<boost::numeric::interval<double>, 10>;
28template struct bench_1<boost::numeric::interval<double>, 30>;
29template struct bench_1<boost::numeric::interval<double>, 100>;
30#endif
31
32#ifdef USE_BOOST_COMPLEX
33#ifdef USE_FLOAT
34template struct bench_1<boost::complex<boost::numeric::interval<float> >, 3>;
35template struct bench_1<boost::complex<boost::numeric::interval<float> >, 10>;
36template struct bench_1<boost::complex<boost::numeric::interval<float> >, 30>;
37template struct bench_1<boost::complex<boost::numeric::interval<float> >, 100>;
38#endif
39
40#ifdef USE_DOUBLE
41template struct bench_1<boost::complex<boost::numeric::interval<double> >, 3>;
42template struct bench_1<boost::complex<boost::numeric::interval<double> >, 10>;
43template struct bench_1<boost::complex<boost::numeric::interval<double> >, 30>;
44template struct bench_1<boost::complex<boost::numeric::interval<double> >, 100>;
45#endif
46#endif