Scale CI multi-simulation to 100 runs, remove per-run progress ticker
Balance Check / balance-simulation (push) Successful in 42s
Balance Check / multi-run-balance (push) Successful in 13m37s
CI / build-and-push (push) Successful in 43s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-26 20:11:49 -04:00
parent 19f652b43a
commit a240ba2e44
2 changed files with 2 additions and 8 deletions
-6
View File
@@ -21,8 +21,6 @@ const strategy = strategyName === 'random' ? new RandomStrategy()
: strategyName === 'persona' ? new PersonaStrategy(seed)
: new GreedyStrategy();
process.stderr.write(`[Run #${runId}] Starting (seed ${seed}, ${totalTicks} ticks, ${strategyName})...\n`);
const result = runSimulation({
totalTicks,
decisionInterval,
@@ -30,10 +28,6 @@ const result = runSimulation({
seed,
verbose: false,
silent: true,
onProgress: (tick, total, era) => {
const pct = ((tick / total) * 100).toFixed(0);
process.stderr.write(`[Run #${runId}] ${pct}% (tick ${tick.toLocaleString()}/${total.toLocaleString()}) — ${era}\n`);
},
});
const report = generateJsonReport(result, { totalTicks, decisionInterval, strategy, seed });