Gather data
This commit is contained in:
@@ -148,8 +148,7 @@ public class MainTest {
|
||||
int foundSeed = -1;
|
||||
for (int i = 0; i < 50; i++) {
|
||||
int seed = opts.seed + i;
|
||||
var rng = new Rng(seed);
|
||||
res = Main.attempt(rng, dict, opts);
|
||||
res = Main.attempt(new Rng(seed), dict, opts);
|
||||
if (res != null && res.filled().ok()) {
|
||||
foundSeed = seed;
|
||||
System.out.println("[DEBUG_LOG] Seed found: " + seed);
|
||||
|
||||
Reference in New Issue
Block a user