mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-02-20 14:52:24 +00:00
Fix mixed mode comparison operators.
See https://svn.boost.org/trac/boost/ticket/11328. And added tests for mixed mode comparisons and other operators.
This commit is contained in:
33
test/test_mixed_cpp_bin_float.cpp
Normal file
33
test/test_mixed_cpp_bin_float.cpp
Normal file
@@ -0,0 +1,33 @@
|
||||
///////////////////////////////////////////////////////////////
|
||||
// Copyright 2012 John Maddock. Distributed under the Boost
|
||||
// Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# define _SCL_SECURE_NO_WARNINGS
|
||||
#endif
|
||||
|
||||
#include <boost/multiprecision/cpp_bin_float.hpp>
|
||||
#include "test_mixed.hpp"
|
||||
|
||||
int main()
|
||||
{
|
||||
try{
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<100>, boost::multiprecision::et_on> big_type1;
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<50>, boost::multiprecision::et_on> small_type1;
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<100>, boost::multiprecision::et_off> big_type2;
|
||||
typedef boost::multiprecision::number<boost::multiprecision::cpp_bin_float<50>, boost::multiprecision::et_off> small_type2;
|
||||
|
||||
test<big_type1, small_type1>();
|
||||
test<big_type2, small_type2>();
|
||||
test<big_type1, small_type2>();
|
||||
test<big_type2, small_type1>();
|
||||
}
|
||||
catch(const std::exception& e)
|
||||
{
|
||||
std::cout << "Failed with unexpected exception: " << e.what() << std::endl;
|
||||
return 1;
|
||||
}
|
||||
return boost::report_errors();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user