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_MPQ) 8 #include <boost/multiprecision/gmp.hpp> 9 #endif 10 test24()11void test24() 12 { 13 #ifdef TEST_MPQ 14 test<boost::multiprecision::mpq_rational>("mpq_rational", 1024); 15 #endif 16 } 17