// Copyright (c) 2012 Robert Ramey // // 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_0.txt) #include #include #include // note: T should be of tyme checked_result for some integer type R template constexpr bool test_checked_subtract( const T & v1, const T & v2, char expected_result ){ using namespace boost::safe_numerics; const T result = v1 - v2; switch(expected_result){ case '.': if(result.exception()){ return false; } return true; case '-': if(safe_numerics_error::negative_overflow_error == result.m_e) return true; case '+': if(safe_numerics_error::positive_overflow_error == result.m_e) return true; case '!': if(safe_numerics_error::range_error == result.m_e) return true; } return false; } #include "test_checked_subtract.hpp" template struct test_signed_pair { static const std::size_t i = First(); static const std::size_t j = Second(); // note: is constexpr really required here? compilers disagree! constexpr static const bool value = test_checked_subtract( signed_values[i], signed_values[j], signed_subtraction_results[i][j] ); }; template struct test_unsigned_pair { static const std::size_t i = First(); static const std::size_t j = Second(); // note: is constexpr really required here? compilers disagree! constexpr static const bool value = test_checked_subtract( unsigned_values[i], unsigned_values[j], unsigned_subtraction_results[i][j] ); }; #include int main(){ using namespace boost::mp11; static_assert( mp_all_of< mp_product< test_signed_pair, signed_test_types, signed_value_indices, signed_value_indices >, mp_to_bool >(), "all values for all signed types correctly subtracted" ); static_assert( mp_all_of< mp_product< test_unsigned_pair, unsigned_test_types, unsigned_value_indices, unsigned_value_indices >, mp_to_bool >(), "all values for all unsigned types correctly subtracted" ); return 0; }