-
-
Notifications
You must be signed in to change notification settings - Fork 814
Fix compilation and doctests with flintlib 3.2 #39413
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
Changes from all commits
17a2d3f
d6bd965
fcc40d1
33ec04b
5e2704a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,6 +51,7 @@ | |
|
|
||
| #define PY_SSIZE_T_CLEAN | ||
| #include <Python.h> | ||
| #include "gmp.h" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Feel like flint bug to me? Surely the header should be usable standalone?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's by design: With |
||
| #include "flint/fmpz.h" | ||
| #include "flint/fmpz_factor.h" | ||
|
|
||
|
|
||
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.
how about using
abs tollike what you used above?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.
I tried but it refuses to work because of the
doctest:...above.