mirror of
https://github.com/boostorg/multiprecision.git
synced 2026-01-31 20:32:09 +00:00
18 lines
394 B
C++
18 lines
394 B
C++
///////////////////////////////////////////////////////////////
|
|
// Copyright 2012 John Maddock. 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_
|
|
|
|
#include <boost/multiprecision/gmp.hpp>
|
|
|
|
using namespace boost::multiprecision;
|
|
|
|
int main()
|
|
{
|
|
mpf_float a;
|
|
mpz_int b;
|
|
mpq_rational c;
|
|
}
|
|
|
|
|