1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
/*
Copyright (C) 2019 Julian RĂ¼th
This file is part of Arb.
Arb is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include "arf.h"
static void
arf_set_fmpz_2exp_dump(arf_t x, const fmpz_t m, const fmpz_t e) {
if (fmpz_is_zero(m)) {
if (fmpz_get_si(e) == 0) arf_zero(x);
else if (fmpz_get_si(e) == -1) arf_pos_inf(x);
else if (fmpz_get_si(e) == -2) arf_neg_inf(x);
else if (fmpz_get_si(e) == -3) arf_nan(x);
else {
/* Impossible to happen; all the special values have been treated above. */
flint_abort();
}
return;
}
arf_set_fmpz_2exp(x, m, e);
}
int
arf_load_str(arf_t x, const char* data)
{
fmpz_t mantissa, exponent;
char * e_str;
char * m_str;
int err = 0;
fmpz_init(mantissa);
fmpz_init(exponent);
e_str = strchr(data, ' ');
if (e_str == NULL) return 1;
m_str = (char*)flint_malloc(e_str - data + 1);
strncpy(m_str, data, e_str - data);
m_str[e_str - data] = '\0';
e_str++;
err = fmpz_set_str(mantissa, m_str, 16);
flint_free(m_str);
if (err)
{
fmpz_clear(exponent);
fmpz_clear(mantissa);
return err;
}
err = fmpz_set_str(exponent, e_str, 16);
if (err)
{
fmpz_clear(exponent);
fmpz_clear(mantissa);
return err;
}
arf_set_fmpz_2exp_dump(x, mantissa, exponent);
fmpz_clear(exponent);
fmpz_clear(mantissa);
return err;
}
int arf_load_file(arf_t x, FILE* stream)
{
mpz_t mantissa, exponent;
fmpz_t mantissa_, exponent_;
mpz_init(mantissa);
mpz_init(exponent);
if (mpz_inp_str(mantissa, stream, 16) == 0) return 1;
if (mpz_inp_str(exponent, stream, 16) == 0) return 1;
fmpz_init_set_readonly(mantissa_, mantissa);
fmpz_init_set_readonly(exponent_, exponent);
arf_set_fmpz_2exp_dump(x, mantissa_, exponent_);
mpz_clear(mantissa);
mpz_clear(exponent);
return 0;
}
|