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

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

from sage.rings.ring cimport Field 

from sage.structure.element cimport RingElement, ModuleElement, Element, FieldElement 

  

cdef class LazyField(Field): 

cpdef interval_field(self, prec=*) 

  

cdef class LazyFieldElement(FieldElement): 

cpdef _add_(self, other) 

cpdef _mul_(self, other) 

cdef LazyFieldElement _new_wrapper(self, value) 

cdef LazyFieldElement _new_binop(self, LazyFieldElement left, LazyFieldElement right, op) 

cdef LazyFieldElement _new_unop(self, LazyFieldElement arg, op) 

cpdef eval(self, R) 

cpdef int depth(self) 

  

cdef class LazyWrapper(LazyFieldElement): 

cdef readonly _value 

  

cdef class LazyBinop(LazyFieldElement): 

cdef readonly LazyFieldElement _left 

cdef readonly LazyFieldElement _right 

cdef readonly _op 

  

cdef class LazyUnop(LazyFieldElement): 

cdef readonly LazyFieldElement _arg 

cdef readonly _op 

  

cdef class LazyNamedUnop(LazyUnop): 

cdef readonly _extra_args