2009-06-30 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / Mono.Math / ChangeLog
1 2007-05-31  Alan McGovern  <alan.mcgovern@gmail.com>
2
3         * BigInteger.cs: Don't instantiate a new BigInteger after
4         multiplying - it's not needed.  
5
6 2007-09-12  Sebastien Pouliot  <sebastien@ximian.com>
7
8         * BigInteger.cs: Updated to match Mono.Security sources.
9
10 2007-07-28  Miguel de Icaza  <miguel@novell.com>
11
12         * BigInteger.cs: Do not cast inside Equals,instead use the as
13         operator, as reported by Jesse Jones.
14
15 2004-12-03  Sebastien Pouliot  <sebastien@ximian.com>
16
17         * BigInteger.cs: Fix issue #70169 in ModPow when modulus is a power of
18         two.
19
20 2004-10-19  Sebastien Pouliot  <sebastien@ximian.com>
21
22         * BigInteger.cs: Fix issue #68452 when Randomize was being called on a
23         0 BigInteger (i.e. BitCount == 0).
24
25 2004-05-14  Marek Safar  <marek.safar@seznam.cz>
26
27         * BigInteger.cs: Removed useless [CLSCompliant (false)]
28
29 2004-05-07  Sebastien Pouliot  <sebastien@ximian.com>
30
31         * BigInteger.cs: In sync with Mono.Security.dll version.
32
33 2004-04-30 Ben Maurer  <bmaurer@users.sourceforge.net>
34
35         * BigInteger.cs: use readonly for prime array.
36
37 2004-04-28  Sebastien Pouliot  <sebastien@ximian.com>
38
39         * BigInteger.cs: In sync with Mono.Security.dll version.
40
41 2004-02-23  Sebastien Pouliot  <sebastien@ximian.com>
42
43         * BigInteger.cs: Corrected isProbablePrime by removing the redundant 
44         loop. Fix #54750.
45
46 2004-02-13  Sebastien Pouliot  <sebastien@ximian.com>
47
48         * BigInteger.cs: Fixed isProbablePrime() and added Parse method from
49         patch provided by Pieter (#51229). Changed SmallPrimeSppTest to 
50         RabinMillerTest (#51229, #54262). Removed obsoleted method
51         isProbablePrime(int).
52
53 2004-02-09  Sebastien Pouliot  <sebastien@ximian.com>
54
55         * BigInteger.cs: Added INSIDE_CORLIB to define ModulusRing as 
56         internal. Without this the unit tests for Mono.Math (now in
57         Mono.Security assembly) wont compile (see bugzilla #44845).
58
59 2003-11-20 Ben Maurer  <bmaurer@users.sourceforge.net>
60
61         * BigInteger.cs: Fix prob. prime test for small numbers (Pieter Philippaerts)
62
63 2003-06-11  Sebastien Pouliot <spouliot@motus.com>
64
65         * BigInteger.cs: Added Clear to zeroize big integers and code to allow
66         compares with null (because operators == and != are re-defined). Note:
67         The class may still leak some private info in temp arrays (thanks Ben).
68
69 2003-04-22  Sebastien Pouliot  <spouliot@videotron.ca>
70
71         * BigInteger.cs: New, much faster, version by Ben Maurer. 
72         Warning: this version requires "unsafe" compilation switch
73         (which isn't a problem in corlib but may be elsewhere)
74
75 2003-02-08  Sebastien Pouliot  <spouliot@videotron.ca>
76
77         * BigInteger.cs: Renamed namespace to match new location.
78