Open pdamme opened 2 months ago
The following DaphneDSL script seems to make the DAPHNE compiler get stuck:
z = [0]; x = [1.0]; for(i in 1:2) z = z + x; print(z);
When the first line is changed to z = [0.0]; it runs smoothly and prints the expected result:
z = [0.0];
DenseMatrix(1x1, double) 2
The following DaphneDSL script seems to make the DAPHNE compiler get stuck:
When the first line is changed to
z = [0.0];
it runs smoothly and prints the expected result: