We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77c9b9e commit cb0a6b3Copy full SHA for cb0a6b3
src/solutions/solution_interface.jl
@@ -4,7 +4,7 @@ const AllObserved = RecursiveArrayTools.AllObserved
4
# No Time Solution : Forward to `A.u`
5
Base.getindex(A::AbstractNoTimeSolution) = A.u[]
6
Base.getindex(A::AbstractNoTimeSolution, i::Int) = A.u[i]
7
-Base.getindex(A::AbstractNoTimeSolution, I::Vararg{Int, N}) where {N} = A.u[I]
+Base.getindex(A::AbstractNoTimeSolution, I::Vararg{Int, N}) where {N} = A.u[I...]
8
Base.getindex(A::AbstractNoTimeSolution, I::AbstractArray{Int}) = A.u[I]
9
Base.getindex(A::AbstractNoTimeSolution, I::CartesianIndex) = A.u[I]
10
Base.getindex(A::AbstractNoTimeSolution, I::Colon) = A.u[I]
0 commit comments