~ubuntu-branches/ubuntu/vivid/gcl/vivid

« back to all changes in this revision

Viewing changes to gmp/mpz/tests/convert.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2002-03-04 14:29:59 UTC
  • Revision ID: james.westby@ubuntu.com-20020304142959-dey14w08kr7lldu3
Tags: upstream-2.5.0.cvs20020219
ImportĀ upstreamĀ versionĀ 2.5.0.cvs20020219

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Test conversion using mpz_get_str and mpz_set_str.
 
2
 
 
3
Copyright (C) 1993, 1994, 1996, 1999, 2000 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 <stdio.h>
 
23
#include <stdlib.h>
 
24
#include <string.h>
 
25
#include "gmp.h"
 
26
#include "gmp-impl.h"
 
27
#include "urandom.h"
 
28
 
 
29
size_t
 
30
#if defined(__STDC__)
 
31
  mpz_out_str (FILE *stream, int base, mpz_srcptr x);
 
32
#else
 
33
  mpz_out_str (stream, base, x);
 
34
#endif
 
35
 
 
36
void debug_mp ();
 
37
 
 
38
#ifndef SIZE
 
39
#define SIZE 32
 
40
#endif
 
41
 
 
42
main (argc, argv)
 
43
     int argc;
 
44
     char **argv;
 
45
{
 
46
  mpz_t op1, op2;
 
47
  mp_size_t size;
 
48
  int i;
 
49
  int reps = 100000;
 
50
  char *str;
 
51
  int base;
 
52
 
 
53
  if (argc == 2)
 
54
     reps = atoi (argv[1]);
 
55
 
 
56
  mpz_init (op1);
 
57
  mpz_init (op2);
 
58
 
 
59
  for (i = 0; i < reps; i++)
 
60
    {
 
61
      size = urandom () % SIZE - SIZE/2;
 
62
 
 
63
      mpz_random2 (op1, size);
 
64
      base = urandom () % 36 + 1;
 
65
      if (base == 1)
 
66
        base = 0;
 
67
 
 
68
      str = mpz_get_str ((char *) 0, base, op1);
 
69
      mpz_set_str (op2, str, base);
 
70
      (*_mp_free_func) (str, 0);
 
71
 
 
72
      if (mpz_cmp (op1, op2))
 
73
        {
 
74
          fprintf (stderr, "ERROR\n");
 
75
          fprintf (stderr, "op1  = "); debug_mp (op1, -16);
 
76
          fprintf (stderr, "base = %d\n", base);
 
77
          abort ();
 
78
        }
 
79
    }
 
80
 
 
81
  exit (0);
 
82
}
 
83
 
 
84
void
 
85
debug_mp (x, base)
 
86
     mpz_t x;
 
87
{
 
88
  mpz_out_str (stderr, base, x); fputc ('\n', stderr);
 
89
}