void setJacobian(int outputSize, int inputSize) { jacobian = List.generate(outputSize, (i) => List.generate(inputSize, (j) => 0.0)); }