Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

from .free_module_element cimport FreeModuleElement 

from sage.libs.gmp.types cimport mpq_t 

from sage.structure.parent cimport Parent 

  

cdef class Vector_rational_dense(FreeModuleElement): 

cdef mpq_t* _entries 

cdef int _init(self, Py_ssize_t degree, Parent parent) except -1 

  

cdef inline Vector_rational_dense _new_c(self): 

cdef type t = type(self) 

cdef Vector_rational_dense x = <Vector_rational_dense>(t.__new__(t)) 

x._init(self._degree, self._parent) 

return x