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 TEST7_H 14 #define TEST7_H 15 16 #ifdef _MSC_VER 17 #pragma warning(disable : 4800 4996) 18 #endif 19 20 #include <boost/multiprecision/cpp_dec_float.hpp> 21 22 #ifdef TEST_ET 23 typedef boost::multiprecision::number<boost::multiprecision::cpp_dec_float<50>, boost::multiprecision::et_on> mp_test_type; 24 #else 25 typedef 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/interval.hpp> 49 #include <boost/numeric/interval/io.hpp> 50 51 #include <boost/numeric/ublas/vector.hpp> 52 #include <boost/numeric/ublas/vector_proxy.hpp> 53 #include <boost/numeric/ublas/matrix.hpp> 54 #include <boost/numeric/ublas/matrix_proxy.hpp> 55 #include <boost/numeric/ublas/io.hpp> 56 57 namespace ublas = boost::numeric::ublas; 58 59 #include "common/init.hpp" 60 61 void test_vector(); 62 void test_matrix_vector(); 63 void test_matrix(); 64 65 #endif 66