Skip to content

Commit d42cf78

Browse files
committed
revised geodesic syntax
1 parent c4305a5 commit d42cf78

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Adapode"
22
uuid = "0750cfb5-909a-49d7-927e-29b6595444bf"
33
authors = ["Michael Reed"]
4-
version = "0.3.1"
4+
version = "0.3.2"
55

66
[deps]
77
Requires = "ae029012-a4dd-5104-9daa-d747884805df"

src/Adapode.jl

+2-7
Original file line numberDiff line numberDiff line change
@@ -294,16 +294,11 @@ function integrate(f::TensorField,x,tmax=2π,tol=15,M::Val{m}=Val(1),B::Val{o}=V
294294
return resize(x)
295295
end
296296

297-
export geosolve, geosolve2
297+
export geosolve
298298

299299
geosolve(Γ,x0,v0,tmax,tol,m,o) = geosolve(Γ,x0,v0,tmax,tol,Val(m),Val(o))
300300
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)
301+
getindex.(odesolve(geodesic(Γ),Chain(x0,v0),tmax,tol,M,B),1)
307302
end
308303

309304
function timeloop!(x,t,tmax,::Val{m}=Val(1)) where m

0 commit comments

Comments
 (0)