I'm testing Loopo on another example. Is it possible to express function
calls in Loopo?
What's the best way to specify the C code as below in the correct Loopo
input format?
for (k = 1; k <= K; k = k + 1) {
for (j = 1; j <= N; j = j + 1) {
Vectorize(r[j][j], x[k][j], &r[j][j], &x[k][j], &t);
for (i = j + 1; i <= N; i = i + 1) {
Rotate(r[j][i], x[k][i], t, &r[j][i], &x[k][i], &t);
}
}
}
Thanks in advance!
Ana