How come that dims(.) yields an array of length 3, and why does my code even compile? Isn’t this a bug?
I believe dims
is treating the vector
input like a matrix, so the returned dims array represents:
- Array length
- Number of rows
- Number of cols
The lack of compiler error is a longstanding issue where the compiler allows assigning vectors of different lengths: Assignment to vector of different size currently allowed · Issue #523 · stan-dev/stanc3 · GitHub
2 Likes