We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4305a5 commit d42cf78Copy full SHA for d42cf78
Project.toml
@@ -1,7 +1,7 @@
1
name = "Adapode"
2
uuid = "0750cfb5-909a-49d7-927e-29b6595444bf"
3
authors = ["Michael Reed"]
4
-version = "0.3.1"
+version = "0.3.2"
5
6
[deps]
7
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
src/Adapode.jl
@@ -294,16 +294,11 @@ function integrate(f::TensorField,x,tmax=2π,tol=15,M::Val{m}=Val(1),B::Val{o}=V
294
return resize(x)
295
end
296
297
-export geosolve, geosolve2
+export geosolve
298
299
geosolve(Γ,x0,v0,tmax,tol,m,o) = geosolve(Γ,x0,v0,tmax,tol,Val(m),Val(o))
300
function geosolve(Γ,x0,v0,tmax=2π,tol=15,M::Val{m}=Val(1),B::Val{o}=Val(4)) where {m,o}
301
- getindex.(odesolve(x->geodesicsystem(x[1],Γ),Chain(x0,v0),tmax,tol,M,B),1)
302
-end
303
-
304
-geosolve2(Γ,g,x0,v0,tmax,tol,m,o) = geosolve2(Γ,g,x0,v0,tmax,tol,Val(m),Val(o))
305
-function geosolve2(Γ,g,x0,v0,tmax=2π,tol=15,M::Val{m}=Val(1),B::Val{o}=Val(4)) where {m,o}
306
- getindex.(odesolve(x->geodesicsystem(x[1],Γ,g),Chain(x0,v0),tmax,tol,M,B),1)
+ getindex.(odesolve(geodesic(Γ),Chain(x0,v0),tmax,tol,M,B),1)
307
308
309
function timeloop!(x,t,tmax,::Val{m}=Val(1)) where m
0 commit comments