]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/multiprecision/test/ublas_interop/test4.hpp
import new upstream nautilus stable release 14.2.8
[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
92f5a8d4 17#pragma warning(disable : 4800 4996 4127 4100)
7c673cae
FG
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
92f5a8d4
TL
32#define USE_UNBOUNDED_ARRAY
33#define USE_STD_VECTOR
7c673cae
FG
34#define USE_BOUNDED_VECTOR USE_MATRIX
35#define USE_UNBOUNDED_ARRAY
92f5a8d4 36#define USE_MAP_ARRAY
7c673cae 37#define USE_STD_MAP
92f5a8d4
TL
38#define USE_MAPPED_VECTOR
39#define USE_COMPRESSED_VECTOR
7c673cae 40#define USE_COORDINATE_VECTOR
92f5a8d4
TL
41#define USE_MAPPED_MATRIX
42#define USE_COMPRESSED_MATRIX
7c673cae
FG
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
92f5a8d4
TL
60void test_matrix_vector();
61void test_matrix();
7c673cae
FG
62
63// FIXME slice are failing in assignment to zero elements
64#undef USE_SLICE
65
66#endif