-
-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rel_import_modules' into meson-compile
- Loading branch information
Showing
22 changed files
with
103 additions
and
72 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,4 +1,4 @@ | ||
#***************************************************************************** | ||
# ***************************************************************************** | ||
# Copyright (C) 2005 William Stein <[email protected]> | ||
# | ||
# Distributed under the terms of the GNU General Public License (GPL) | ||
|
@@ -11,23 +11,30 @@ | |
# The full text of the GPL is available at: | ||
# | ||
# http://www.gnu.org/licenses/ | ||
#***************************************************************************** | ||
# ***************************************************************************** | ||
|
||
from .free_module import FreeModule, VectorSpace, span | ||
from sage.modules.free_module import FreeModule, VectorSpace, span | ||
|
||
from .free_quadratic_module import (FreeQuadraticModule, QuadraticSpace, | ||
InnerProductSpace) | ||
from sage.modules.free_quadratic_module import ( | ||
FreeQuadraticModule, | ||
QuadraticSpace, | ||
InnerProductSpace, | ||
) | ||
|
||
from .free_module_element import (vector, free_module_element, zero_vector, | ||
random_vector) | ||
from sage.modules.free_module_element import ( | ||
vector, | ||
free_module_element, | ||
zero_vector, | ||
random_vector, | ||
) | ||
|
||
from .vector_space_morphism import linear_transformation | ||
from sage.modules.vector_space_morphism import linear_transformation | ||
|
||
from .with_basis.all import * | ||
from sage.modules.with_basis.all import * | ||
|
||
from sage.misc.lazy_import import lazy_import | ||
|
||
lazy_import('sage.modules.filtered_vector_space', 'FilteredVectorSpace') | ||
lazy_import('sage.modules.multi_filtered_vector_space', 'MultiFilteredVectorSpace') | ||
lazy_import('sage.modules.free_quadratic_module_integer_symmetric', 'IntegralLattice') | ||
lazy_import('sage.modules.torsion_quadratic_module', 'TorsionQuadraticForm') | ||
lazy_import("sage.modules.filtered_vector_space", "FilteredVectorSpace") | ||
lazy_import("sage.modules.multi_filtered_vector_space", "MultiFilteredVectorSpace") | ||
lazy_import("sage.modules.free_quadratic_module_integer_symmetric", "IntegralLattice") | ||
lazy_import("sage.modules.torsion_quadratic_module", "TorsionQuadraticForm") |
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,4 +1,4 @@ | ||
from .vector_double_dense cimport Vector_double_dense | ||
from sage.modules .vector_double_dense cimport Vector_double_dense | ||
|
||
cdef class Vector_complex_double_dense(Vector_double_dense): | ||
pass |
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 .vector_numpy_dense cimport Vector_numpy_dense | ||
from sage.modules .vector_numpy_dense cimport Vector_numpy_dense | ||
|
||
cdef class Vector_double_dense(Vector_numpy_dense): | ||
pass |
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
Oops, something went wrong.