multiprecision/performance/sf_performance_nct4.cpp
2019-04-23 08:51:47 +02:00

16 lines
570 B
C++

///////////////////////////////////////////////////////////////
// Copyright 2011 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
#include "sf_performance.hpp"
void nct_tests_4()
{
#ifdef TEST_MPFR
time_proc("mpfr_float_100", test_nct<mpfr_float_100>);
time_proc("mpfr_float_100 (no expression templates", test_nct<number<mpfr_float_backend<100>, et_off> >);
time_proc("static_mpfr_float_100", test_nct<static_mpfr_float_100>);
#endif
}