-
-
Notifications
You must be signed in to change notification settings - Fork 491
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gh-36612: Replace relative imports by absolute ones in
sage.libs
ex…
…cept `.ntl` <!-- ^^^^^ Please provide a concise, informative and self-explanatory title. Don't put issue numbers in there, do this in the PR body below. For example, instead of "Fixes #1234" use "Introduce new method to calculate 1+1" --> <!-- Describe your changes here in detail --> <!-- Why is this change required? What problem does it solve? --> <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> - Cherry-picked from #35095 - This is for #36228 <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> <!-- If your change requires a documentation PR, please link it appropriately --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> <!-- Feel free to remove irrelevant items. --> - [x] The title is concise, informative, and self-explanatory. - [ ] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #36612 Reported by: Matthias Köppe Reviewer(s): Matthias Köppe, Tobias Diez
- Loading branch information
Showing
89 changed files
with
170 additions
and
174 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from ..eclib cimport homspace | ||
from sage.libs.eclib cimport homspace | ||
|
||
cdef class ModularSymbols: | ||
cdef homspace* H |
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,11 +1,7 @@ | ||
from ..eclib cimport mat | ||
from sage.libs.eclib cimport mat | ||
|
||
cdef class Matrix: | ||
cdef mat* M | ||
|
||
cdef class MatrixFactory: | ||
cdef new_matrix(self, mat M) noexcept | ||
|
||
|
||
|
||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from .types cimport * | ||
from .random cimport * | ||
from .mpz cimport * | ||
from .mpq cimport * | ||
from .pylong cimport * | ||
from sage.libs.gmp.types cimport * | ||
from sage.libs.gmp.random cimport * | ||
from sage.libs.gmp.mpz cimport * | ||
from sage.libs.gmp.mpq cimport * | ||
from sage.libs.gmp.pylong cimport * |
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,6 +1,6 @@ | ||
# distutils: libraries = gmp | ||
|
||
from .types cimport * | ||
from sage.libs.gmp.types cimport * | ||
|
||
cdef extern from "gmp.h": | ||
|
||
|
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,6 +1,6 @@ | ||
# distutils: libraries = gmp | ||
|
||
from .types cimport * | ||
from sage.libs.gmp.types cimport * | ||
|
||
cdef extern from "gmp.h": | ||
|
||
|
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,6 +1,6 @@ | ||
# distutils: libraries = gmp | ||
|
||
from .types cimport * | ||
from sage.libs.gmp.types cimport * | ||
|
||
cdef extern from "gmp.h": | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# distutils: libraries = gmp | ||
|
||
from .types cimport * | ||
from sage.libs.gmp.types cimport * | ||
|
||
cdef extern from "gmp.h": | ||
|
||
|
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,65 +1,65 @@ | ||
from .types cimport * | ||
from sage.libs.gsl.types cimport * | ||
|
||
from .math cimport * | ||
from .complex cimport * | ||
from .poly cimport * | ||
from .airy cimport * | ||
from .bessel cimport * | ||
from .clausen cimport * | ||
from .coulomb cimport * | ||
from .coupling cimport * | ||
from .dawson cimport * | ||
from .debye cimport * | ||
from .dilog cimport * | ||
from .elementary cimport * | ||
from .ellint cimport * | ||
from .elljac cimport * | ||
from .erf cimport * | ||
from .exp cimport * | ||
from .expint cimport * | ||
from .fermi_dirac cimport * | ||
from .gamma cimport * | ||
from .gegenbauer cimport * | ||
from .hyperg cimport * | ||
from .laguerre cimport * | ||
from .lambert cimport * | ||
from .legendre cimport * | ||
from .log cimport * | ||
from .pow_int cimport * | ||
from .psi cimport * | ||
from .synchrotron cimport * | ||
from .transport cimport * | ||
from .trig cimport * | ||
from .wavelet cimport * | ||
from .zeta cimport * | ||
from sage.libs.gsl.math cimport * | ||
from sage.libs.gsl.complex cimport * | ||
from sage.libs.gsl.poly cimport * | ||
from sage.libs.gsl.airy cimport * | ||
from sage.libs.gsl.bessel cimport * | ||
from sage.libs.gsl.clausen cimport * | ||
from sage.libs.gsl.coulomb cimport * | ||
from sage.libs.gsl.coupling cimport * | ||
from sage.libs.gsl.dawson cimport * | ||
from sage.libs.gsl.debye cimport * | ||
from sage.libs.gsl.dilog cimport * | ||
from sage.libs.gsl.elementary cimport * | ||
from sage.libs.gsl.ellint cimport * | ||
from sage.libs.gsl.elljac cimport * | ||
from sage.libs.gsl.erf cimport * | ||
from sage.libs.gsl.exp cimport * | ||
from sage.libs.gsl.expint cimport * | ||
from sage.libs.gsl.fermi_dirac cimport * | ||
from sage.libs.gsl.gamma cimport * | ||
from sage.libs.gsl.gegenbauer cimport * | ||
from sage.libs.gsl.hyperg cimport * | ||
from sage.libs.gsl.laguerre cimport * | ||
from sage.libs.gsl.lambert cimport * | ||
from sage.libs.gsl.legendre cimport * | ||
from sage.libs.gsl.log cimport * | ||
from sage.libs.gsl.pow_int cimport * | ||
from sage.libs.gsl.psi cimport * | ||
from sage.libs.gsl.synchrotron cimport * | ||
from sage.libs.gsl.transport cimport * | ||
from sage.libs.gsl.trig cimport * | ||
from sage.libs.gsl.wavelet cimport * | ||
from sage.libs.gsl.zeta cimport * | ||
|
||
from .block cimport * | ||
from .vector cimport * | ||
from .vector_complex cimport * | ||
from .matrix cimport * | ||
from .matrix_complex cimport * | ||
from sage.libs.gsl.block cimport * | ||
from sage.libs.gsl.vector cimport * | ||
from sage.libs.gsl.vector_complex cimport * | ||
from sage.libs.gsl.matrix cimport * | ||
from sage.libs.gsl.matrix_complex cimport * | ||
|
||
from .permutation cimport * | ||
from .combination cimport * | ||
from .sort cimport * | ||
from sage.libs.gsl.permutation cimport * | ||
from sage.libs.gsl.combination cimport * | ||
from sage.libs.gsl.sort cimport * | ||
|
||
from .blas cimport * | ||
from .linalg cimport * | ||
from .eigen cimport * | ||
from .fft cimport * | ||
from .integration cimport * | ||
from .rng cimport * | ||
from .qrng cimport * | ||
from .random cimport * | ||
from .statistics cimport * | ||
from .histogram cimport * | ||
from .ntuple cimport * | ||
from .monte cimport * | ||
from .odeiv cimport * | ||
from .interp cimport * | ||
from .chebyshev cimport * | ||
from .sum cimport * | ||
from .roots cimport * | ||
from .min cimport * | ||
from .fit cimport * | ||
from .errno cimport * | ||
from sage.libs.gsl.blas cimport * | ||
from sage.libs.gsl.linalg cimport * | ||
from sage.libs.gsl.eigen cimport * | ||
from sage.libs.gsl.fft cimport * | ||
from sage.libs.gsl.integration cimport * | ||
from sage.libs.gsl.rng cimport * | ||
from sage.libs.gsl.qrng cimport * | ||
from sage.libs.gsl.random cimport * | ||
from sage.libs.gsl.statistics cimport * | ||
from sage.libs.gsl.histogram cimport * | ||
from sage.libs.gsl.ntuple cimport * | ||
from sage.libs.gsl.monte cimport * | ||
from sage.libs.gsl.odeiv cimport * | ||
from sage.libs.gsl.interp cimport * | ||
from sage.libs.gsl.chebyshev cimport * | ||
from sage.libs.gsl.sum cimport * | ||
from sage.libs.gsl.roots cimport * | ||
from sage.libs.gsl.min cimport * | ||
from sage.libs.gsl.fit cimport * | ||
from sage.libs.gsl.errno cimport * |
Oops, something went wrong.