1 /////////////////////////////////////////////////////////////// 2 // Copyright 2019 John Maddock. Distributed under the Boost 3 // Software License, Version 1.0. (See accompanying file 4 // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt 5 6 #include "../performance_test.hpp" 7 #if defined(TEST_TOMMATH) 8 #include <boost/multiprecision/tommath.hpp> 9 #endif 10 test44()11void test44() 12 { 13 #ifdef TEST_TOMMATH 14 test<boost::multiprecision::tom_int>("tommath_int", 1024*4); 15 /* 16 // 17 // These are actually too slow to test!!! 18 // 19 test<boost::multiprecision::tom_rational>("tom_rational", 128); 20 test<boost::multiprecision::tom_rational>("tom_rational", 256); 21 test<boost::multiprecision::tom_rational>("tom_rational", 512); 22 test<boost::multiprecision::tom_rational>("tom_rational", 1024); 23 */ 24 #endif 25 } 26