From 352940e741a2d6633686812c51cda261bb4b9fb1 Mon Sep 17 00:00:00 2001 From: tegwick Date: Sat, 8 Aug 2026 16:11:21 +0200 Subject: [PATCH] cargo fmt after the H2 panel Co-Authored-By: Claude Opus 5 --- games/ground/examples/h2-panel.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/games/ground/examples/h2-panel.rs b/games/ground/examples/h2-panel.rs index be6680b..dabcc8d 100644 --- a/games/ground/examples/h2-panel.rs +++ b/games/ground/examples/h2-panel.rs @@ -142,7 +142,10 @@ fn sweep(variant: Variant, players: u8, reactive: bool, force_global: bool) -> C } } assert_eq!(c.games, GAMES, "{players}p {variant:?}: short cell"); - assert_eq!(c.played, GAMES, "{players}p {variant:?}: games did not finish"); + assert_eq!( + c.played, GAMES, + "{players}p {variant:?}: games did not finish" + ); c } @@ -193,6 +196,9 @@ fn main() { for players in [3u8, 4] { let scoped = sweep(Variant::H2ScopedProblemStress, players, false, false); let global = sweep(Variant::H2ScopedProblemStress, players, false, true); - println!(" {players}p {:>4} {:>4}", scoped.won, global.won); + println!( + " {players}p {:>4} {:>4}", + scoped.won, global.won + ); } }