pub const MAX_INTERVAL_MATRIX_DIM: usize = 7;Expand description
Largest dimension supported by IntervalMatrix::det and
IntervalMatrix::det_sign.
A subset-DP determinant needs 2^D partial intervals. The implementation
reserves 128 entries inline, covering the geometry-oriented D ≤ 7 scope
without heap allocation.