Skip to content

Commit 1b4f7ab

Browse files
committed
1 parent 2e0c684 commit 1b4f7ab

File tree

3 files changed

+3452
-3450
lines changed

3 files changed

+3452
-3450
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
version: ${{ matrix.version }}
3434
arch: ${{ matrix.arch }}
3535
- uses: julia-actions/cache@v1
36+
- run: julia --project=. -e 'import Pkg; Pkg.add(url="https://github.com/PerezHz/TaylorSeries.jl", rev="jp/inplace-sqr!"); Pkg.instantiate()'
37+
- run: julia --project=. -e 'import Pkg; Pkg.add(url="https://github.com/PerezHz/TaylorIntegration.jl", rev="jp/ts-pr-361"); Pkg.instantiate()'
3638
- uses: julia-actions/julia-buildpkg@v1
3739
- uses: julia-actions/julia-runtest@v1
3840
env:

src/propagation/asteroid_dynamical_models.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ To improve performance, some internal loops are multi-threaded via `Threads.thre
8989
See also [`PlanetaryEphemeris.NBP_pN_A_J23E_J23M_J2S!`](@ref).
9090
""" RNp1BP_pN_A_J23E_J2S_ng_eph_threads!
9191

92-
function RNp1BP_pN_A_J23E_J2S_ng_eph_threads!(dq, q, params, t)
92+
@taylorize function RNp1BP_pN_A_J23E_J2S_ng_eph_threads!(dq, q, params, t)
9393
# Julian date of start time
9494
local jd0 = params.jd0
9595
# Days since J2000.0 = 2.451545e6
@@ -663,7 +663,7 @@ function RNp1BP_pN_A_J23E_J2S_ng_eph_threads!(dq, q, params, t)
663663
nothing
664664
end
665665

666-
function RNp1BP_pN_A_J23E_J2S_eph_threads!(dq, q, params, t)
666+
@taylorize function RNp1BP_pN_A_J23E_J2S_eph_threads!(dq, q, params, t)
667667
# Julian date of start time
668668
local jd0 = params.jd0
669669
# Days since J2000.0 = 2.451545e6
@@ -1199,7 +1199,7 @@ function RNp1BP_pN_A_J23E_J2S_eph_threads!(dq, q, params, t)
11991199
nothing
12001200
end
12011201

1202-
function newtonian!(dq, q, params, t)
1202+
@taylorize function newtonian!(dq, q, params, t)
12031203
# Julian date of start time
12041204
local jd0 = params.jd0
12051205
# Days since J2000.0 = 2.451545e6

0 commit comments

Comments
 (0)