]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/multiprecision/test/ublas_interop/test4.hpp
Add patch for failing prerm scripts
[ceph.git] / ceph / src / boost / libs / multiprecision / test / ublas_interop / test4.hpp
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#ifndef TEST4_H
14#define TEST4_H
15
16#ifdef _MSC_VER
17# pragma warning(disable:4800 4996 4127 4100)
18#endif
19
20#include <boost/multiprecision/cpp_dec_float.hpp>
21
22#ifdef TEST_ET
23typedef boost::multiprecision::number<boost::multiprecision::cpp_dec_float<50>, boost::multiprecision::et_on> mp_test_type;
24#else
25typedef boost::multiprecision::number<boost::multiprecision::cpp_dec_float<50>, boost::multiprecision::et_off> mp_test_type;
26#endif
27//typedef double mp_test_type;
28
29#define USE_RANGE
30#define USE_SLICE
31#define USE_FLOAT
32#define USE_UNBOUNDED_ARRAY
33#define USE_STD_VECTOR
34#define USE_BOUNDED_VECTOR USE_MATRIX
35#define USE_UNBOUNDED_ARRAY
36#define USE_MAP_ARRAY
37#define USE_STD_MAP
38#define USE_MAPPED_VECTOR
39#define USE_COMPRESSED_VECTOR
40#define USE_COORDINATE_VECTOR
41#define USE_MAPPED_MATRIX
42#define USE_COMPRESSED_MATRIX
43#define USE_COORDINATE_MATRIX
44
45#include <iostream>
46
47#include <boost/numeric/ublas/vector.hpp>
48#include <boost/numeric/ublas/matrix.hpp>
49#include <boost/numeric/ublas/matrix_proxy.hpp>
50#include <boost/numeric/ublas/banded.hpp>
51#include <boost/numeric/ublas/io.hpp>
52
53namespace ublas = boost::numeric::ublas;
54
55#include "common/init.hpp"
56
57//#define USE_BANDED
58#define USE_DIAGONAL
59
60
61void test_matrix_vector ();
62void test_matrix ();
63
64
65// FIXME slice are failing in assignment to zero elements
66#undef USE_SLICE
67
68#endif