2012-09-04 17:47:02 +02:00
|
|
|
/*=============================================================================
|
|
|
|
|
|
|
|
This file is part of ARB.
|
|
|
|
|
|
|
|
ARB 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 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ARB 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 ARB; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
=============================================================================*/
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
Copyright (C) 2012 Fredrik Johansson
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "fmprb.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
fmprb_contains_fmpr(const fmprb_t x, const fmpr_t y)
|
|
|
|
{
|
|
|
|
if (fmprb_is_exact(x))
|
|
|
|
{
|
|
|
|
return fmpr_equal(fmprb_midref(x), y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fmpr_t t;
|
2013-03-14 16:29:04 +01:00
|
|
|
fmpr_struct tmp[3];
|
|
|
|
int result;
|
2012-09-04 17:47:02 +02:00
|
|
|
|
|
|
|
fmpr_init(t);
|
2013-03-14 16:29:04 +01:00
|
|
|
fmpr_init(tmp + 0);
|
|
|
|
fmpr_init(tmp + 1);
|
|
|
|
fmpr_init(tmp + 2);
|
2012-09-04 17:47:02 +02:00
|
|
|
|
2013-03-14 16:29:04 +01:00
|
|
|
/* y >= xm - xr <=> 0 >= xm - xr - y */
|
|
|
|
fmpr_set(tmp + 0, fmprb_midref(x));
|
|
|
|
fmpr_neg(tmp + 1, fmprb_radref(x));
|
|
|
|
fmpr_neg(tmp + 2, y);
|
|
|
|
fmpr_sum(t, tmp, 3, 30, FMPR_RND_DOWN);
|
|
|
|
result = (fmpr_sgn(t) <= 0);
|
2012-09-04 17:47:02 +02:00
|
|
|
|
2013-03-14 16:29:04 +01:00
|
|
|
if (result)
|
2012-09-04 17:47:02 +02:00
|
|
|
{
|
2013-03-14 16:29:04 +01:00
|
|
|
/* y <= xm + xr <=> 0 <= xm + xr - y */
|
|
|
|
fmpr_neg(tmp + 1, tmp + 1);
|
|
|
|
fmpr_sum(t, tmp, 3, 30, FMPR_RND_DOWN);
|
|
|
|
result = (fmpr_sgn(t) >= 0);
|
2012-09-04 17:47:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fmpr_clear(t);
|
2013-03-14 16:29:04 +01:00
|
|
|
fmpr_clear(tmp + 0);
|
|
|
|
fmpr_clear(tmp + 1);
|
|
|
|
fmpr_clear(tmp + 2);
|
|
|
|
|
2012-09-04 17:47:02 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2013-03-14 16:29:04 +01:00
|
|
|
|