-
Notifications
You must be signed in to change notification settings - Fork 21
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
Write Pulseq #284
base: master
Are you sure you want to change the base?
Write Pulseq #284
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #284 +/- ##
==========================================
+ Coverage 92.60% 93.64% +1.03%
==========================================
Files 33 34 +1
Lines 2245 2500 +255
==========================================
+ Hits 2079 2341 +262
+ Misses 166 159 -7
Flags with carried forward coverage won't be shown. Click here to find out more.
|
""" | ||
For comparing two `Sequence`s custom types | ||
""" | ||
Base.isapprox(s1::Sequence, s2::Sequence) = begin |
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.
The syntax Base.isapprox
instead of import Base: isapprox
is not consistent with the rest of the code. Julia Blue (#187) recommends Base.isapprox
, we need to choose one or the other.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Please do not modify the reader, and remove aux functions, as we have discussed multiple times.
This pull request is meant to address issue #152