test-arrays.txt
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #
  2. # Test suite table for MPI library
  3. #
  4. # Format of entries:
  5. # suite-name:function-name:description
  6. #
  7. # suite-name The name used to identify this test in mpi-test
  8. # function-name The function called to perform this test in mpi-test.c
  9. # description   A brief description of what the suite tests
  10. #
  11. ## The contents of this file are subject to the Mozilla Public
  12. ## License Version 1.1 (the "License"); you may not use this file
  13. ## except in compliance with the License. You may obtain a copy of
  14. ## the License at http://www.mozilla.org/MPL/
  15. ##
  16. ## Software distributed under the License is distributed on an "AS
  17. ## IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  18. ## implied. See the License for the specific language governing
  19. ## rights and limitations under the License.
  20. ##
  21. ## The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  22. ## library.
  23. ##
  24. ## The Initial Developer of the Original Code is 
  25. ## Michael J. Fromberger <sting@linguist.dartmouth.edu>
  26. ##
  27. ## Portions created by Michael J. Fromberger are 
  28. ## Copyright (C) 1998, 2000 Michael J. Fromberger. All Rights Reserved
  29. ##
  30. ## Contributor(s):
  31. ##
  32. ## Alternatively, the contents of this file may be used under the
  33. ## terms of the GNU General Public License Version 2 or later (the
  34. ## "GPL"), in which case the provisions of the GPL are applicable
  35. ## instead of those above.  If you wish to allow use of your
  36. ## version of this file only under the terms of the GPL and not to
  37. ## allow others to use your version of this file under the MPL,
  38. ## indicate your decision by deleting the provisions above and
  39. ## replace them with the notice and other provisions required by
  40. ## the GPL.  If you do not delete the provisions above, a recipient
  41. ## may use your version of this file under either the MPL or the GPL.
  42. ## 
  43. # $Id: test-arrays.txt,v 1.1 2000/07/14 00:44:26 nelsonb%netscape.com Exp $
  44. #
  45. list:test_list:print out a list of the available test suites
  46. copy:test_copy:test assignment of mp-int structures
  47. exchange:test_exch:test exchange of mp-int structures
  48. zero:test_zero:test zeroing of an mp-int
  49. set:test_set:test setting an mp-int to a small constant
  50. absolute-value:test_abs:test the absolute value function
  51. negate:test_neg:test the arithmetic negation function
  52. add-digit:test_add_d:test digit addition
  53. add:test_add:test full addition
  54. subtract-digit:test_sub_d:test digit subtraction
  55. subtract:test_sub:test full subtraction
  56. multiply-digit:test_mul_d:test digit multiplication
  57. multiply:test_mul:test full multiplication
  58. square:test_sqr:test full squaring function
  59. divide-digit:test_div_d:test digit division
  60. divide-2:test_div_2:test division by two
  61. divide-2d:test_div_2d:test division & remainder by 2^d
  62. divide:test_div:test full division
  63. expt-digit:test_expt_d:test digit exponentiation
  64. expt:test_expt:test full exponentiation
  65. expt-2:test_2expt:test power-of-two exponentiation
  66. square-root:test_sqrt:test integer square root function
  67. modulo-digit:test_mod_d:test digit modular reduction
  68. modulo:test_mod:test full modular reduction
  69. mod-add:test_addmod:test modular addition
  70. mod-subtract:test_submod:test modular subtraction
  71. mod-multiply:test_mulmod:test modular multiplication
  72. mod-square:test_sqrmod:test modular squaring function
  73. mod-expt:test_exptmod:test full modular exponentiation
  74. mod-expt-digit:test_exptmod_d:test digit modular exponentiation
  75. mod-inverse:test_invmod:test modular inverse function
  76. compare-digit:test_cmp_d:test digit comparison function
  77. compare-zero:test_cmp_z:test zero comparison function
  78. compare:test_cmp:test general signed comparison
  79. compare-magnitude:test_cmp_mag:test general magnitude comparison
  80. parity:test_parity:test parity comparison functions
  81. gcd:test_gcd:test greatest common divisor functions
  82. lcm:test_lcm:test least common multiple function
  83. conversion:test_convert:test general radix conversion facilities
  84. binary:test_raw:test raw output format
  85. pprime:test_pprime:test probabilistic primality tester
  86. fermat:test_fermat:test Fermat pseudoprimality tester