]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/multiprecision/test/ublas_interop/test6.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / multiprecision / test / ublas_interop / test6.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 TEST6_H
14#define TEST6_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_BOUNDED_ARRAY
34#define USE_STD_VECTOR
35#define USE_BOUNDED_VECTOR USE_MATRIX
36#define USE_UNBOUNDED_ARRAY
37#define USE_MAP_ARRAY
38#define USE_STD_MAP
39#define USE_MAPPED_VECTOR
40#define USE_COMPRESSED_VECTOR
41#define USE_COORDINATE_VECTOR
42#define USE_MAPPED_MATRIX
43#define USE_COMPRESSED_MATRIX
44#define USE_COORDINATE_MATRIX
45
46#include <iostream>
47
48#include <boost/numeric/ublas/vector.hpp>
49#include <boost/numeric/ublas/matrix.hpp>
50#include <boost/numeric/ublas/matrix_proxy.hpp>
51#include <boost/numeric/ublas/symmetric.hpp>
52#include <boost/numeric/ublas/io.hpp>
53
54namespace ublas = boost::numeric::ublas;
55
56#include "common/init.hpp"
57
58void test_matrix_vector ();
59void test_matrix ();
60
61
62#endif