factory ValueMatrix.zeros(int rows, int cols) { return ValueMatrix( List.generate(rows, (_) => List.generate(cols, (_) => Value(0.0)))); }