hello
I am attempting to pass an array [] simplex to a function. When i do this, i get the following compile error:
-------------------------------------------------
14: int ii, int nt, int idx, int k,
15: real rho_delta, real rho_psi, vector ba1, vector ba2,
16: array [] simplex bs1, array [] simplex bs2,
^
17: matrix d, matrix p, array [] int vt,
18: vector item_available) {
-------------------------------------------------
Expected non-array type after "array" declaration.
Changing the function so that it is looking for array [] vector appears to fix this.
I was just wondering if this is the proper solution, or am I missing something.
Thanks