-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
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
[GSoC] Series: Fixes Incorrect limit evaluations #19680
Conversation
✅ Hi, I am the SymPy bot (v160). I'm here to help you write a release notes entry. Please read the guide on how to write release notes. Your release notes are in good order. Here is what the release notes will look like:
This will be added to https://github.com/sympy/sympy/wiki/Release-Notes-for-1.7. Note: This comment will be updated with the latest check if you edit the pull request. You need to reload the page to see it. Click here to see the pull request description that was parsed.
Update The release notes on the wiki have been updated. |
Codecov Report
@@ Coverage Diff @@
## master #19680 +/- ##
=============================================
+ Coverage 75.660% 75.704% +0.043%
=============================================
Files 658 658
Lines 171250 171285 +35
Branches 40422 40439 +17
=============================================
+ Hits 129569 129670 +101
+ Misses 36017 35955 -62
+ Partials 5664 5660 -4 |
Thanks, I think that this is ready. |
Fixes: #4114
Fixes: #12398
Fixes: #18399
Brief description of what is fixed or changed
Adds
e.is_Pow
heuristic tolimits.py
to handle limit evaluations ofPow
objects using the help ofmeromorphic
check, or by separately evaluating thelimit
ofbase
andexponent
and then determining the finallimit
which needs to be evaluated.Adds some code to
limits.py
which improves the evaluation of limits havingAbs
expressions.Other Comments
Regression Tests have been added.
Release Notes
e.is_Pow
heuristic tolimits.py
to improve the limit evaluations ofPow
objects