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

Commit

Permalink
sage.matrix: Factor Matrix_double_dense through Matrix_numpy_dense, a…
Browse files Browse the repository at this point in the history
…dd Matrix_numpy_integer_dense
  • Loading branch information
Matthias Koeppe committed Oct 12, 2021
1 parent d66b7bc commit d33d173
Show file tree
Hide file tree
Showing 6 changed files with 531 additions and 412 deletions.
16 changes: 5 additions & 11 deletions src/sage/matrix/matrix_double_dense.pxd
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
from .matrix_dense cimport Matrix_dense
cimport numpy as cnumpy
from .matrix_numpy_dense cimport Matrix_numpy_dense

cdef class Matrix_double_dense(Matrix_dense):
cdef object _numpy_dtype
# cdef cnumpy.NPY_TYPES _numpy_dtypeint
cdef int _numpy_dtypeint
cdef object _python_dtype
cdef object _sage_dtype
cdef object _sage_vector_dtype
cdef Matrix_double_dense _new(self, int nrows=*, int ncols=*)
cdef cnumpy.ndarray _matrix_numpy

cdef class Matrix_double_dense(Matrix_numpy_dense):

pass
Loading

0 comments on commit d33d173

Please sign in to comment.