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 9365821 commit c6eec57Copy full SHA for c6eec57
test/extensions/ad.jl
@@ -27,13 +27,11 @@ sol = solve(prob, Tsit5())
27
28
mtkparams = parameter_values(prob)
29
new_p = rand(14)
30
-@test_broken begin
31
- gs = gradient(new_p) do new_p
32
- new_params = SciMLStructures.replace(SciMLStructures.Tunable(), mtkparams, new_p)
33
- new_prob = remake(prob, p = new_params)
34
- new_sol = solve(new_prob, Tsit5())
35
- sum(new_sol)
36
- end
+gs = gradient(new_p) do new_p
+ new_params = SciMLStructures.replace(SciMLStructures.Tunable(), mtkparams, new_p)
+ new_prob = remake(prob, p = new_params)
+ new_sol = solve(new_prob, Tsit5())
+ sum(new_sol)
37
end
38
39
@testset "Issue#2997" begin
0 commit comments