Gather data

This commit is contained in:
mike
2026-01-10 01:05:11 +01:00
parent a444f943b9
commit cc0191f494
3 changed files with 5 additions and 6 deletions

View File

@@ -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);