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

#***************************************************************************** 

# Copyright (C) 2014 Sage 

# 

# Distributed under the terms of the GNU General Public License (GPL) 

# The full text of the GPL is available at: 

# http://www.gnu.org/licenses/ 

# 

############################################################################### 

  

cimport sage.structure.parent 

  

cdef class RecursivelyEnumeratedSet_generic(sage.structure.parent.Parent): 

cdef readonly _seeds 

cdef public successors 

cdef readonly str _enumeration 

cdef readonly _max_depth 

cdef readonly _graded_component 

  

cpdef seeds(self) 

cpdef graded_component(self, depth) 

  

cdef class RecursivelyEnumeratedSet_symmetric(RecursivelyEnumeratedSet_generic): 

cdef set _get_next_graded_component(self, set A, set B) 

  

cpdef graded_component(self, depth) 

  

cdef class RecursivelyEnumeratedSet_graded(RecursivelyEnumeratedSet_generic): 

cdef set _get_next_graded_component(self, set B) 

  

cpdef graded_component(self, depth)