Closed Kalashnikovni closed 3 years ago
Add split support for multiple uses of the same variable with different indices, in the same equation. For e.g.
for i in 1:N-1 loop a[i] = x[i] + x[i - 1] end for;
It's done by our current implementation. However, it doesn't comply with the assumption that the algorithm requires.
Add split support for multiple uses of the same variable with different indices, in the same equation. For e.g.
for i in 1:N-1 loop a[i] = x[i] + x[i - 1] end for;