-
Notifications
You must be signed in to change notification settings - Fork 1
Taylor series #48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
andreapasquale94
wants to merge
13
commits into
dev
Choose a base branch
from
taylor-series
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Taylor series #48
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
c689982
TaylorSeries extension (interoperability)
andreapasquale94 19f5106
Update Project version
andreapasquale94 f1f2f0a
Updated minimum supported Julia version to 1.9
MicheleCeresoli 8912c3d
Updated compat entries
MicheleCeresoli f40e14b
updated compat entries
MicheleCeresoli ea3224e
Removed older Julia versions from CI
MicheleCeresoli e8f4b3a
Added v1.10 to test versions
MicheleCeresoli 3e31d2a
Added tests on TaylorSeriesExtension
MicheleCeresoli 5c06efb
Updated test tolerances
MicheleCeresoli 4c9fb03
Added `check_linktime`
MicheleCeresoli c44e983
Added to docs
MicheleCeresoli d42c329
Increased TaylorSeries test robustness
MicheleCeresoli 5048f5b
Decreased test tolerance
MicheleCeresoli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,8 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.7' | ||
- '1.8' | ||
- '1.9' | ||
- '1.10' | ||
- '1' | ||
os: | ||
- ubuntu-latest | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
module TaylorSeriesExt | ||
|
||
import Ephemerides: find_logical_record, check_linktime | ||
|
||
using Ephemerides: DAF, SPKLink, | ||
SPKSegmentHeader2, SPKSegmentHeader8, SPKSegmentHeader20, | ||
SPKSegmentHeader1, SPKSegmentHeader5, SPKSegmentHeader9, | ||
SPKSegmentHeader14, SPKSegmentHeader18 | ||
|
||
using TaylorSeries: constant_term, Taylor1 | ||
|
||
|
||
function find_logical_record(head::SPKSegmentHeader2, time::Taylor1{<:Real}) | ||
return find_logical_record(head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(head::SPKSegmentHeader8, time::Taylor1{<:Real}) | ||
return find_logical_record(head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(head::SPKSegmentHeader20, time::Taylor1{<:Real}) | ||
return find_logical_record(head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(daf::DAF, head::SPKSegmentHeader1, time::Taylor1{<:Real}) | ||
return find_logical_record(daf, head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(daf::DAF, head::SPKSegmentHeader5, time::Taylor1{<:Real}) | ||
return find_logical_record(daf, head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(daf::DAF, head::SPKSegmentHeader9, time::Taylor1{<:Real}) | ||
return find_logical_record(daf, head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(daf::DAF, head::SPKSegmentHeader14, time::Taylor1{<:Real}) | ||
return find_logical_record(daf, head, constant_term(time)) | ||
end | ||
|
||
function find_logical_record(daf::DAF, head::SPKSegmentHeader18, time::Taylor1{<:Real}) | ||
return find_logical_record(daf, head, constant_term(time)) | ||
end | ||
|
||
function check_linktime(link::SPKLink, time::Taylor1{<:Real}) | ||
return check_linktime(link, constant_term(time)) | ||
end | ||
|
||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.