1/* mpz_fib2_ui -- calculate Fibonacci numbers.
2
3Copyright 2001, 2012, 2014, 2015 Free Software Foundation, Inc.
4
5This file is part of the GNU MP Library.
6
7The GNU MP Library is free software; you can redistribute it and/or modify
8it under the terms of either:
9
10  * the GNU Lesser General Public License as published by the Free
11    Software Foundation; either version 3 of the License, or (at your
12    option) any later version.
13
14or
15
16  * the GNU General Public License as published by the Free Software
17    Foundation; either version 2 of the License, or (at your option) any
18    later version.
19
20or both in parallel, as here.
21
22The GNU MP Library is distributed in the hope that it will be useful, but
23WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25for more details.
26
27You should have received copies of the GNU General Public License and the
28GNU Lesser General Public License along with the GNU MP Library.  If not,
29see https://www.gnu.org/licenses/.  */
30
31#include <stdio.h>
32#include "gmp-impl.h"
33
34
35void
36mpz_fib2_ui (mpz_ptr fn, mpz_ptr fnsub1, unsigned long n)
37{
38  mp_ptr     fp, f1p;
39  mp_size_t  size;
40
41  if (n <= FIB_TABLE_LIMIT)
42    {
43      MPZ_NEWALLOC (fn, 1)[0] = FIB_TABLE (n);
44      SIZ(fn) = (n != 0);      /* F[0]==0, others are !=0 */
45      MPZ_NEWALLOC (fnsub1, 1)[0] = FIB_TABLE ((int) n - 1);
46      SIZ(fnsub1) = (n != 1);  /* F[1-1]==0, others are !=0 */
47      return;
48    }
49
50  size = MPN_FIB2_SIZE (n);
51  fp =  MPZ_NEWALLOC (fn,     size);
52  f1p = MPZ_NEWALLOC (fnsub1, size);
53
54  size = mpn_fib2_ui (fp, f1p, n);
55
56  SIZ(fn)     = size;
57  SIZ(fnsub1) = size - (f1p[size-1] == 0);
58}
59