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

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

from sage.structure.sage_object cimport SageObject 

from sage.structure.element cimport ModuleElement 

from sage.categories.action cimport Action 

from sage.rings.padics.pow_computer cimport PowComputer_class 

  

  

cdef class Dist(ModuleElement): 

cpdef normalize(self, include_zeroth_moment=*) 

cdef long ordp 

cpdef long _ord_p(self) 

cdef long _relprec(self) 

cdef _unscaled_moment(self, long i) 

  

cdef class Dist_vector(Dist): 

cdef public _moments 

cdef Dist_vector _new_c(self) 

cdef Dist_vector _addsub(self, Dist_vector right, bint negate) 

cpdef _add_(self, other) 

  

# cdef class Dist_simple(Dist): 

# cdef public _moments 

# cdef Dist_simple _new_c(self) 

# cdef Dist_simple _addsub(self, Dist_simple right, bint negate) 

  

#cdef class Dist2(Dist): # only works on 64-bit.... 

# cdef long[60] moments 

# cdef int prec 

# cdef public PowComputer_long prime_pow 

# cdef Dist2 _new_c(self) 

  

# cdef class Dist_long(Dist): 

# cdef long[60] _moments # 38 once 2 is special-cased 

# cdef int relprec 

# cdef public PowComputer_class prime_pow 

# cdef int quasi_normalize(self) except -1 

# cdef Dist_long _new_c(self) 

# cdef Dist_long _addsub(self, Dist_long right, bint negate) 

  

cdef class WeightKAction(Action): 

cdef public _k 

cdef public _character 

cdef public _adjuster 

cdef public _p 

cdef public _Np 

cdef public _actmat 

cdef public _maxprecs 

cdef public _symk 

cdef public _dettwist 

cdef public _Sigma0 

  

  

cpdef acting_matrix(self, g, M) 

cpdef _compute_acting_matrix(self, g, M) 

  

cdef class WeightKAction_vector(WeightKAction): 

pass 

  

cdef class WeightKAction_simple(WeightKAction): 

pass 

  

cdef class SimpleMat(SageObject): 

cdef long* _mat 

cdef long M 

cdef bint _inited 

  

cdef class WeightKAction_long(WeightKAction): 

pass 

  

cdef class iScale(Action): 

pass