flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2016 Arb authors

    This file is part of FLINT.

    FLINT 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 3 of the License, or
    (at your option) any later version.  See <https://www.gnu.org/licenses/>.
*/

#include "arb.h"

void
arb_min(arb_t z, const arb_t x, const arb_t y, slong prec)
{
    arf_t left, right, t, xr, yr;

    if (!arb_overlaps(x, y))
    {
        if (arf_cmp(arb_midref(x), arb_midref(y)) < 0) {
            arb_set(z, x);
        } else {
            arb_set(z, y);
        }
        return;
    }

    if (arf_is_nan(arb_midref(x)) || arf_is_nan(arb_midref(y)))
    {
        arb_indeterminate(z);
        return;
    }

    if (!arb_is_finite(x) || !arb_is_finite(y))
    {
        if (
	    (arf_is_neg_inf(arb_midref(x)) && mag_is_finite(arb_radref(x))) ||
	    (arf_is_neg_inf(arb_midref(y)) && mag_is_finite(arb_radref(y)))
	    )
	{
	    arb_neg_inf(z);
	}
	else if (!mag_is_finite(arb_radref(x)) || !mag_is_finite(arb_radref(y)))
	{
	    arb_zero_pm_inf(z);
	}
	else if (arf_is_pos_inf(arb_midref(x)))
	{
	    arb_set(z, y);
	} else
	{
	    /* In this case must have y = +inf */
	    arb_set(z, x);
	}
	return;
    }

    arf_init(left);
    arf_init(right);
    arf_init(t);

    arf_init_set_mag_shallow(xr, arb_radref(x));
    arf_init_set_mag_shallow(yr, arb_radref(y));

    arf_sub(left, arb_midref(x), xr, prec, ARF_RND_FLOOR);
    arf_sub(t, arb_midref(y), yr, prec, ARF_RND_FLOOR);
    arf_min(left, left, t);

    arf_add(right, arb_midref(x), xr, prec, ARF_RND_CEIL);
    arf_add(t, arb_midref(y), yr, prec, ARF_RND_CEIL);
    arf_min(right, right, t);

    arb_set_interval_arf(z, left, right, prec);

    arf_clear(left);
    arf_clear(right);
    arf_clear(t);
}