This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert_sage from #32441 to avoid merge conflicts
- Loading branch information
Jonathan Kliem
committed
Sep 3, 2021
1 parent
a3bd572
commit 2924e24
Showing
2 changed files
with
275 additions
and
4 deletions.
There are no files selected for viewing
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,15 @@ | ||
from cypari2.gen cimport Gen | ||
from sage.rings.integer cimport Integer | ||
from sage.rings.rational cimport Rational | ||
|
||
cpdef gen_to_sage(Gen z, locals=*) | ||
|
||
cpdef set_integer_from_gen(Integer self, Gen x) | ||
cpdef Gen new_gen_from_integer(Integer self) | ||
cpdef set_rational_from_gen(Rational self, Gen x) | ||
cpdef Gen new_gen_from_rational(Rational self) | ||
|
||
cpdef pari_is_prime(Integer p) | ||
cpdef pari_is_prime_power(Integer q, bint get_data) | ||
cpdef unsigned long pari_maxprime() | ||
cpdef list pari_prime_range(long c_start, long c_stop, bint py_ints=*) |
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