Skip to content

Commit a8c2f16

Browse files
committed
further class javadoc cleanup
1 parent 5b59cc7 commit a8c2f16

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/main/java/de/tilman_neumann/jml/random/LehmerRng64.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
/**
1919
* Lehmer's random number generator for 64 bit numbers; requires 128 bit multiplication internally.
2020
*
21-
* It seems to work but not much faster than Random yet.
22-
*
2321
* @see https://en.wikipedia.org/wiki/Lehmer_random_number_generator
2422
*/
2523
public class LehmerRng64 {

src/main/java/de/tilman_neumann/jml/random/LehmerRng64MH.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* Lehmer's random number generator for 64 bit numbers; requires 128 bit multiplication internally.
2020
*
21-
* This variant uses using Math.multiplyHigh().
21+
* This variant is using Math.multiplyHigh().
2222
*
2323
* @see https://en.wikipedia.org/wiki/Lehmer_random_number_generator
2424
*/

src/main/java/de/tilman_neumann/jml/random/SpRand32.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import org.apache.logging.log4j.Logger;
1818

1919
/**
20-
* My Java port of the 32-bit pseudo-random number generator from tinyEcm.c by Ben Buhrow.
20+
* Java port of the 32-bit pseudo-random number generator from tinyEcm.c by Ben Buhrow.
2121
*
2222
* This generator is special in that nextInt() creates strictly non-negative random numbers.
2323
*

0 commit comments

Comments
 (0)