-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
backward integration bug #58
Conversation
mikelehu
commented
Dec 23, 2023
- Now, RKGaussLegendre.jl works well for backward integrations.
- I have added a new notebook called "/Examples/Simple Pendulum- Forward and Back integration.ipynb where I have tested the implementation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #58 +/- ##
==========================================
+ Coverage 25.44% 26.36% +0.92%
==========================================
Files 8 8
Lines 1973 1995 +22
==========================================
+ Hits 502 526 +24
+ Misses 1471 1469 -2 ☔ View full report in Codecov by Sentry. |
@@ -0,0 +1,334 @@ | |||
{ |
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.
this file isn't needed
No test? |
Hi, Should I be worried about failed checks? Or will the pull request be merged into the base branch and made public in the next few days? Thanks. |
Those code coverage decreases are just saying that the new code isn't being tested. |
I don't understand what you want to tell me. I have modified the implementation to resolve the issue raised by Andreas Varga. After confirming locally that the new deployment is correct, I made the pull request. |
You can add more commits to the same branch and it will register in this pull request. My point though is that the Jupyter notebook is not part of the test suite and it would be good to ensure that this feature gets a proper test. The only things that are tested are the files that are in the |
You are right, I agree that it is important to add a proper test for reverse time solve. |