Scale CI multi-simulation to 100 runs, remove per-run progress ticker
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -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 });
|
||||
|
||||
|
||||
Reference in New Issue
Block a user