1 // Compiler options: -optimize
6 public static int Main ()
8 //switching to a constant fixes the problem
9 double thisIsCausingTheProblem
= 5.0;
11 double[,] m1
= new double[4, 4] {
12 { 1.0, 0.0, 0.0, thisIsCausingTheProblem }
,
13 { 0.0, 1.0, 0.0, thisIsCausingTheProblem }
,
14 { 0.0, 0.0, 1.0, thisIsCausingTheProblem }
,
15 { 0.0, 0.0, 0.0, 1.0 }