~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to gmp3/mpz/remove.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* mpz_remove -- divide out a factor and return its multiplicity.
 
2
 
 
3
Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
 
4
 
 
5
This file is part of the GNU MP Library.
 
6
 
 
7
The GNU MP Library is free software; you can redistribute it and/or modify
 
8
it under the terms of the GNU Lesser General Public License as published by
 
9
the Free Software Foundation; either version 2.1 of the License, or (at your
 
10
option) any later version.
 
11
 
 
12
The GNU MP Library is distributed in the hope that it will be useful, but
 
13
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
14
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 
15
License for more details.
 
16
 
 
17
You should have received a copy of the GNU Lesser General Public License
 
18
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
 
19
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 
20
MA 02111-1307, USA. */
 
21
 
 
22
#include "gmp.h"
 
23
#include "gmp-impl.h"
 
24
 
 
25
unsigned long int
 
26
mpz_remove (mpz_ptr dest, mpz_srcptr src, mpz_srcptr f)
 
27
{
 
28
  mpz_t fpow[40];               /* inexhaustible...until year 2020 or so */
 
29
  mpz_t x, rem;
 
30
  unsigned long int pwr;
 
31
  int p;
 
32
 
 
33
  if (mpz_cmp_ui (f, 1) <= 0 || mpz_sgn (src) == 0)
 
34
    DIVIDE_BY_ZERO;
 
35
  if (mpz_cmp_ui (f, 2) == 0)
 
36
    {
 
37
      unsigned long int s0;
 
38
      s0 = mpz_scan1 (src, 0);
 
39
      mpz_div_2exp (dest, src, s0);
 
40
      return s0;
 
41
    }
 
42
 
 
43
  /* We could perhaps compute mpz_scan1(src,0)/mpz_scan1(f,0).  It is an
 
44
     upper bound of the result we're seeking.  We could also shift down the
 
45
     operands so that they become odd, to make intermediate values smaller.  */
 
46
 
 
47
  mpz_init (rem);
 
48
  mpz_init (x);
 
49
 
 
50
  pwr = 0;
 
51
  mpz_init (fpow[0]);
 
52
  mpz_set (fpow[0], f);
 
53
  mpz_set (dest, src);
 
54
 
 
55
  /* Divide by f, f^2, ..., f^(2^k) until we get a remainder for f^(2^k).  */
 
56
  for (p = 0;; p++)
 
57
    {
 
58
      mpz_tdiv_qr (x, rem, dest, fpow[p]);
 
59
      if (SIZ (rem) != 0)
 
60
        break;
 
61
      mpz_init (fpow[p + 1]);
 
62
      mpz_mul (fpow[p + 1], fpow[p], fpow[p]);
 
63
      mpz_set (dest, x);
 
64
    }
 
65
 
 
66
  pwr = (1 << p) - 1;
 
67
 
 
68
  mpz_clear (fpow[p]);
 
69
 
 
70
  /* Divide by f^(2^(k-1)), f^(2^(k-2)), ..., f for all divisors that give a
 
71
     zero remainder.  */
 
72
  while (--p >= 0)
 
73
    {
 
74
      mpz_tdiv_qr (x, rem, dest, fpow[p]);
 
75
      if (SIZ (rem) == 0)
 
76
        {
 
77
          pwr += 1 << p;
 
78
          mpz_set (dest, x);
 
79
        }
 
80
      mpz_clear (fpow[p]);
 
81
    }
 
82
 
 
83
  mpz_clear (x);
 
84
  mpz_clear (rem);
 
85
  return pwr;
 
86
}