make everything use same random number generator

This commit is contained in:
2022-02-23 09:29:21 -06:00
parent 08699ce8ce
commit 74ffbfd8ac
4 changed files with 18 additions and 17 deletions

View File

@@ -4,10 +4,6 @@ import java.math.MathContext;
public abstract class Equations {
public static int getRandomInt(int min, int max) {
return (int) ((Math.random() * (max - min)) + min);
}
//pValue calculation as described in original pairSEQ paper.
//Included for comparison with original results.
//Not used by BiGpairSEQ for matching.