pub const MAX_MATRIX_PRODUCT: usize = 10_000;Expand description
Hard ceiling on the number of invocations a single for_each row may expand
to. A cartesian product multiplies quickly; above this the run fails rather
than silently spawning an unbounded fleet.