introduce bitloops

This commit is contained in:
mike
2026-01-14 08:04:17 +01:00
parent bcad930bfc
commit 352e8c79ca
3 changed files with 19 additions and 14 deletions

View File

@@ -94,10 +94,10 @@ public class Main {
System.out.print(indentLines(res.mask().gridToString(), " "));
section("Grid (raw)");
System.out.print(indentLines(res.filled().grid().gridToString(), " "));
System.out.print(indentLines(res.filled().grid().gridToString(res.mask().mask()), " "));
section("Grid (human)");
System.out.print(indentLines(res.filled().grid().renderHuman(), " "));
System.out.print(indentLines(res.filled().grid().renderHuman(res.mask().mask()), " "));
var exported = res.exportFormatFromFilled(1, new Rewards(50, 2, 1));