-
-
Notifications
You must be signed in to change notification settings - Fork 480
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
sage.calculus
: Modularization fixes, doctest cosmetics, # needs
#35717
Merged
vbraun
merged 29 commits into
sagemath:develop
from
mkoeppe:sage_calculus_modularization_fixes
Aug 5, 2023
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
8dc47e8
sage.calculus: Add # optional - numpy, sympy
mkoeppe b88272f
sage.calculus: Doctest cosmetics
mkoeppe cc152c1
sage.calculus: Add # optional
mkoeppe 654f27c
sage.calculus: Add # optional
mkoeppe ddbad8d
sage.calculus: Doctest cosmetics
mkoeppe c68e14f
sage.calculus: Add # optional
mkoeppe 933a6eb
sage.calculus: Modularization fixes
mkoeppe be243bf
src/sage/calculus/transforms/dft.py: Fix up
mkoeppe a25a7e0
src/sage/calculus/transforms/dft.py: Do not lazy_import RR, keep sageβ¦
mkoeppe 2dd2026
Merge branch 'develop' into sage_calculus_modularization_fixes
mkoeppe d2b9265
sage.calculus: More # optional
mkoeppe be0ac79
src/sage/calculus/transforms/dft.py: Add missing import
mkoeppe 6ae45a7
src/sage/calculus/transforms/fft.pyx: Fix doc markup
mkoeppe 901e719
Merge tag '10.1.beta4' into sage_calculus_modularization_fixes
mkoeppe 92bd779
sage.calculus: Avoid use of symbolics in some doctests
mkoeppe ec0f34b
src/sage/calculus/transforms/dft.py (dct, dst): Try to avoid using saβ¦
mkoeppe a49e884
src/sage/calculus/ode.pyx: Fix markup
mkoeppe 551d714
Merge tag '10.1.beta5' into sage_calculus_modularization_fixes
mkoeppe 917c892
src/sage/calculus/interpolation.pyx: Make a doctest less sensitive toβ¦
mkoeppe 9413783
Merge tag '10.1.beta6' into sage_calculus_modularization_fixes
mkoeppe 69ac234
sage -fixdoctests --only-tags src/sage/calculus/**/*.{py,pyx}
mkoeppe 60b459c
./sage -fixdoctests --distribution sagemath-modules --only-tags --proβ¦
mkoeppe 22f8294
sage.calculus: Update # needs from #35095
mkoeppe 12b3cc1
src/sage/calculus/ode.pyx: Do not rely on block-level doctest tag forβ¦
mkoeppe 0895830
Merge branch 'develop' into sage_calculus_modularization_fixes
mkoeppe 830a233
Merge tag '10.1.beta8' into sage_calculus_modularization_fixes
mkoeppe 214d910
# optional -> # needs
mkoeppe bfd511f
typo
mkoeppe e1decf3
src/sage/calculus/transforms/dft.py: Replace .all import
mkoeppe 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# sage.doctest: needs sage.symbolic | ||
""" | ||
Functional notation support for common calculus methods | ||
|
||
|
This file contains 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 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 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 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.
needs sage.symbolic
would work?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.
Thanks, fixed (in all files)