16 lines
406 B
C++
Raw Permalink Normal View History

2018-01-12 21:47:58 +01:00
///////////////////////////////////////////////////////////////
// Copyright 2012 John Maddock. Distributed under the Boost
// Software License, Version 1.0. (See accompanying file
2021-10-05 21:37:46 +02:00
// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
2018-01-12 21:47:58 +01:00
#include <boost/multiprecision/gmp.hpp>
using namespace boost::multiprecision;
int main()
{
2021-10-05 21:37:46 +02:00
mpf_float a;
mpz_int b;
2018-01-12 21:47:58 +01:00
mpq_rational c;
}