beta-0.89.2
[luatex.git] / source / libs / gmp / gmp-src / mpz / sqrt.c
blob0272319b3c9aab743ff073dd55970b31362baa97
1 /* mpz_sqrt(root, u) -- Set ROOT to floor(sqrt(U)).
3 Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2005, 2012 Free Software
4 Foundation, Inc.
6 This file is part of the GNU MP Library.
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of either:
11 * the GNU Lesser General Public License as published by the Free
12 Software Foundation; either version 3 of the License, or (at your
13 option) any later version.
17 * the GNU General Public License as published by the Free Software
18 Foundation; either version 2 of the License, or (at your option) any
19 later version.
21 or both in parallel, as here.
23 The GNU MP Library is distributed in the hope that it will be useful, but
24 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
25 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 for more details.
28 You should have received copies of the GNU General Public License and the
29 GNU Lesser General Public License along with the GNU MP Library. If not,
30 see https://www.gnu.org/licenses/. */
32 #include <stdio.h> /* for NULL */
33 #include "gmp.h"
34 #include "gmp-impl.h"
36 void
37 mpz_sqrt (mpz_ptr root, mpz_srcptr op)
39 mp_size_t op_size, root_size;
40 mp_ptr root_ptr, op_ptr;
42 op_size = SIZ (op);
43 if (UNLIKELY (op_size <= 0))
45 if (op_size < 0)
46 SQRT_OF_NEGATIVE;
47 SIZ(root) = 0;
48 return;
51 /* The size of the root is accurate after this simple calculation. */
52 root_size = (op_size + 1) / 2;
53 SIZ (root) = root_size;
55 op_ptr = PTR (op);
57 if (root == op)
59 /* Allocate temp space for the root, which we then copy to the
60 shared OP/ROOT variable. */
61 TMP_DECL;
62 TMP_MARK;
64 root_ptr = TMP_ALLOC_LIMBS (root_size);
65 mpn_sqrtrem (root_ptr, NULL, op_ptr, op_size);
67 MPN_COPY (op_ptr, root_ptr, root_size);
69 TMP_FREE;
71 else
73 root_ptr = MPZ_NEWALLOC (root, root_size);
75 mpn_sqrtrem (root_ptr, NULL, op_ptr, op_size);