Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
moved sage.modules.binary_search to sage.data_structures.binary_search
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Bouillaguet committed Aug 27, 2016
1 parent b706613 commit ce4de73
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 9 deletions.
3 changes: 0 additions & 3 deletions src/module_list.py
Expand Up @@ -1086,9 +1086,6 @@ def uname_specific(name, value, alternative):
##
################################

Extension('sage.modules.binary_search',
sources = ['sage/modules/binary_search.pyx']),

Extension('sage.modules.vector_rational_sparse',
sources = ['sage/modules/vector_rational_sparse.pyx']),

Expand Down
2 changes: 1 addition & 1 deletion src/sage/matrix/matrix_integer_sparse.pyx
Expand Up @@ -21,7 +21,7 @@ TESTS::
# http://www.gnu.org/licenses/
##############################################################################

from sage.modules.binary_search cimport *
from sage.data_structures.binary_search cimport *
from sage.modules.vector_integer_sparse cimport *
from sage.modules.vector_modn_sparse cimport *

Expand Down
2 changes: 1 addition & 1 deletion src/sage/matrix/matrix_modn_sparse.pyx
Expand Up @@ -99,7 +99,7 @@ from sage.structure.element import is_Vector

cimport sage.structure.element

from sage.modules.binary_search cimport *
from sage.data_structures.binary_search cimport *
from sage.modules.vector_integer_sparse cimport *

from matrix_integer_sparse cimport Matrix_integer_sparse
Expand Down
2 changes: 1 addition & 1 deletion src/sage/matrix/matrix_rational_sparse.pyx
Expand Up @@ -21,7 +21,7 @@ TESTS::
# http://www.gnu.org/licenses/
##############################################################################

from sage.modules.binary_search cimport *
from sage.data_structures.binary_search cimport *
from sage.modules.vector_integer_sparse cimport *
from sage.modules.vector_rational_sparse cimport *

Expand Down
2 changes: 1 addition & 1 deletion src/sage/matrix/misc.pyx
Expand Up @@ -18,7 +18,7 @@ from sage.ext.mod_int cimport *
from sage.libs.mpfr cimport *
from sage.libs.gmp.rational_reconstruction cimport mpq_rational_reconstruction

from sage.modules.binary_search cimport *
from sage.data_structures.binary_search cimport *
from sage.modules.vector_integer_sparse cimport *
from sage.modules.vector_rational_sparse cimport *
from sage.modules.vector_modn_sparse cimport *
Expand Down
2 changes: 1 addition & 1 deletion src/sage/modules/vector_integer_sparse.pyx
Expand Up @@ -5,7 +5,7 @@
#############################################################

from sage.libs.gmp.mpz cimport *
from sage.modules.binary_search cimport *
from sage.data_structures.binary_search cimport *
from sage.rings.integer cimport Integer


Expand Down
2 changes: 1 addition & 1 deletion src/sage/modules/vector_rational_sparse.pyx
Expand Up @@ -7,7 +7,7 @@
include "cysignals/memory.pxi"

from sage.libs.gmp.mpq cimport *
from sage.modules.binary_search cimport *
from sage.data_structures.binary_search cimport *

from sage.rings.rational cimport Rational

Expand Down

0 comments on commit ce4de73

Please sign in to comment.