-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indexing ComponentMatrix
with FlatAxis
components
#248
Comments
I can actually fix this by commenting out this line, which creates a |
OK, I attempted to fix this issue by introducing a |
Now almost everything works with #249. The things that are broken:
ComponentArray(a = T[], b = (;)) == ComponentVector{T}(a = T[], b = T[])
|
Managed to fix the test for indexing a |
When i try the following code:
I see this error:
It looks like
maybe_reshape
is ignoring the length of theb
component inJ
, I guess because it's aFlatAxis
, not aShapedAxis
. If I makeb
have asize
of, say(1, nk)
it works as expected.Any ideas?
The text was updated successfully, but these errors were encountered: