mptest-9.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  *    mptest-9.c
  3.  *
  4.  *   Test logical functions
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  *
  16.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  17.  * library.
  18.  *
  19.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  20.  * Portions created by Michael J. Fromberger are 
  21.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  22.  * All Rights Reserved.
  23.  *
  24.  * Contributor(s):
  25.  *
  26.  * Alternatively, the contents of this file may be used under the
  27.  * terms of the GNU General Public License Version 2 or later (the
  28.  * "GPL"), in which case the provisions of the GPL are applicable
  29.  * instead of those above.  If you wish to allow use of your
  30.  * version of this file only under the terms of the GPL and not to
  31.  * allow others to use your version of this file under the MPL,
  32.  * indicate your decision by deleting the provisions above and
  33.  * replace them with the notice and other provisions required by
  34.  * the GPL.  If you do not delete the provisions above, a recipient
  35.  * may use your version of this file under either the MPL or the GPL.
  36.  *
  37.  *  $Id: mptest-9.c,v 1.2 2000/08/02 20:48:28 nelsonb%netscape.com Exp $
  38.  */
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include <string.h>
  42. #include <ctype.h>
  43. #include <limits.h>
  44. #include <time.h>
  45. #include "mpi.h"
  46. #include "mplogic.h"
  47. int main(int argc, char *argv[])
  48. {
  49.   mp_int    a, b, c;
  50.   int       pco;
  51.   mp_err    res;
  52.   printf("Test 9: Logical functionsnn");
  53.   if(argc < 3) {
  54.     fprintf(stderr, "Usage: %s <a> <b>n", argv[0]);
  55.     return 1;
  56.   }
  57.   mp_init(&a); mp_init(&b); mp_init(&c);
  58.   mp_read_radix(&a, argv[1], 16);
  59.   mp_read_radix(&b, argv[2], 16);
  60.   printf("a       = "); mp_print(&a, stdout); fputc('n', stdout);
  61.   printf("b       = "); mp_print(&b, stdout); fputc('n', stdout);
  62.   mpl_not(&a, &c);
  63.   printf("~a      = "); mp_print(&c, stdout); fputc('n', stdout);
  64.   mpl_and(&a, &b, &c);
  65.   printf("a & b   = "); mp_print(&c, stdout); fputc('n', stdout);
  66.   mpl_or(&a, &b, &c);
  67.   printf("a | b   = "); mp_print(&c, stdout); fputc('n', stdout);
  68.   mpl_xor(&a, &b, &c);
  69.   printf("a ^ b   = "); mp_print(&c, stdout); fputc('n', stdout);
  70.   mpl_rsh(&a, &c, 1);
  71.   printf("a >>  1 = "); mp_print(&c, stdout); fputc('n', stdout);
  72.   mpl_rsh(&a, &c, 5);
  73.   printf("a >>  5 = "); mp_print(&c, stdout); fputc('n', stdout);
  74.   mpl_rsh(&a, &c, 16);
  75.   printf("a >> 16 = "); mp_print(&c, stdout); fputc('n', stdout);
  76.   mpl_lsh(&a, &c, 1);
  77.   printf("a <<  1 = "); mp_print(&c, stdout); fputc('n', stdout);
  78.   mpl_lsh(&a, &c, 5);
  79.   printf("a <<  5 = "); mp_print(&c, stdout); fputc('n', stdout);
  80.   mpl_lsh(&a, &c, 16);
  81.   printf("a << 16 = "); mp_print(&c, stdout); fputc('n', stdout);
  82.   mpl_num_set(&a, &pco);
  83.   printf("population(a) = %dn", pco);
  84.   mpl_num_set(&b, &pco);
  85.   printf("population(b) = %dn", pco);
  86.   res = mpl_parity(&a);
  87.   if(res == MP_EVEN)
  88.     printf("a has even parityn");
  89.   else
  90.     printf("a has odd parityn");
  91.   
  92.   mp_clear(&c);
  93.   mp_clear(&b);
  94.   mp_clear(&a);
  95.   return 0;
  96. }