Skip to content

Commit

Permalink
Merge pull request #823 from nsajko/t
Browse files Browse the repository at this point in the history
remove unbound type parameter
  • Loading branch information
ChrisRackauckas authored Sep 8, 2022
2 parents 04ed55d + 6410d3d commit a882fd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chainrules.jl
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ZygoteRules.@adjoint function DiffEqBase.EnsembleSolution(sim, time, converged)
for j in 1:size(p̄)[end - 1]] for i in 1:size(p̄)[end]]
(EnsembleSolution(arrarr, 0.0, true), nothing, nothing)
end
function EnsembleSolution_adjoint(p̄::AbstractArray{<:AbstractArray, 1}) where {T}
function EnsembleSolution_adjoint(p̄::AbstractArray{<:AbstractArray, 1})
(EnsembleSolution(p̄, 0.0, true), nothing, nothing)
end
function EnsembleSolution_adjoint(p̄::EnsembleSolution)
Expand Down

0 comments on commit a882fd9

Please sign in to comment.