//This file is part of Bertini 2.
//
//test/generating/mpfr_float.cpp is free software: you can redistribute it and/or modify
//it under the terms of the GNU General Public License as published by
//the Free Software Foundation, either version 3 of the License, or
//(at your option) any later version.
//
//test/generating/mpfr_float.cpp is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with test/generating/mpfr_float.cpp. If not, see .
//
// Copyright(C) 2015 - 2017 by Bertini2 Development Team
//
// See for a copy of the license,
// as well as COPYING. Bertini2 is provided with permitted
// additional terms in the b2/licenses/ directory.
/**
\file test/generating/mpfr_float.cpp Tests the generating of text from mpfr_float's.
*/
#include "bertini2/io/generators.hpp"
#include "bertini2/io/parsing/number_parsers.hpp"
#include
using mpfr_float = bertini::mpfr_float;
BOOST_AUTO_TEST_SUITE(mpfr_float_generating)
BOOST_AUTO_TEST_SUITE(round_trip)
BOOST_AUTO_TEST_CASE(zero)
{
bertini::DefaultPrecision(30);
mpfr_float z(0);
std::string result;
std::back_insert_iterator sink(result);
BOOST_CHECK(bertini::generators::Classic::generate(sink, z));
mpfr_float rt;
BOOST_CHECK(bertini::parsing::classic::parse(result.begin(), result.end(), rt));
BOOST_CHECK_EQUAL(rt,z);
}
BOOST_AUTO_TEST_CASE(one)
{
bertini::DefaultPrecision(30);
mpfr_float z(1);
std::string result;
std::back_insert_iterator sink(result);
BOOST_CHECK(bertini::generators::Classic::generate(sink, z));
mpfr_float rt;
BOOST_CHECK(bertini::parsing::classic::parse(result.begin(), result.end(), rt));
BOOST_CHECK_EQUAL(rt,z);
}
BOOST_AUTO_TEST_CASE(sqrt_2)
{
bertini::DefaultPrecision(30);
mpfr_float z = sqrt(mpfr_float(2));
std::string result;
std::back_insert_iterator sink(result);
BOOST_CHECK(bertini::generators::Classic::generate(sink, z));
mpfr_float rt;
BOOST_CHECK(bertini::parsing::classic::parse(result.begin(), result.end(), rt));
BOOST_CHECK_EQUAL(rt,z);
}
BOOST_AUTO_TEST_CASE(precision)
{
bertini::DefaultPrecision(30);
mpfr_float z = sqrt(mpfr_float(2));
std::string result;
std::back_insert_iterator sink(result);
BOOST_CHECK(bertini::generators::Classic::generate(sink, z));
bertini::DefaultPrecision(20);
mpfr_float rt;
BOOST_CHECK(bertini::parsing::classic::parse(result.begin(), result.end(), rt));
BOOST_CHECK_EQUAL(rt,z);
BOOST_CHECK(rt.precision()>=30);
}
BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()