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

@@ -10,7 +10,7 @@ import java.util.*;
public class Plate {
private String sourceFile;
private List<List<Integer[]>> wells;
private Random rand = new Random();
private final Random rand = BiGpairSEQ.getRand();
private int size;
private double error;
private Integer[] populations;