pqc/external/flint-2.4.3/fmpq/get_cfrac.c
2014-05-24 23:16:06 +02:00

55 lines
1.6 KiB
C

/*=============================================================================
This file is part of FLINT.
FLINT 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.
FLINT 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 FLINT; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
=============================================================================*/
/******************************************************************************
Copyright (C) 2011 Fredrik Johansson
******************************************************************************/
#include "fmpq.h"
slong
fmpq_get_cfrac(fmpz * c, fmpq_t rem, const fmpq_t x, slong n)
{
fmpz_t p, q;
slong i;
fmpz_init(p);
fmpz_init(q);
fmpz_set(p, fmpq_numref(x));
fmpz_set(q, fmpq_denref(x));
for (i = 0; i < n && !fmpz_is_zero(q); i++)
{
fmpz_fdiv_qr(c + i, p, p, q);
fmpz_swap(p, q);
}
fmpz_set(fmpq_numref(rem), q);
fmpz_set(fmpq_denref(rem), p);
fmpq_canonicalise(rem);
fmpz_clear(p);
fmpz_clear(q);
return i;
}