Skip to content

Commit

Permalink
fix: fix deprecation warning from OrdinaryDiffEq
Browse files Browse the repository at this point in the history
  • Loading branch information
mchitre committed Feb 11, 2024
1 parent bbf0829 commit b69db6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RaySolver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ function traceray1(T, model, r0, z0, θ, rmax, ds, p0, q0)
else
soln = solve(prob, model.solver; abstol=model.solvertol, saveat=ds, callback=cb)
end
s2 = soln[end]
s2 = soln.u[end]
soln.t[end], s2[1], s2[2], atan(s2[4], s2[3]), s2[5], s2[6], s2[7], soln.u, soln.t
end

Expand Down

0 comments on commit b69db6c

Please sign in to comment.