Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/sets/finite_set_map_cy.pxd
4057 views
#*****************************************************************************
#       Copyright (C) 2010 Florent Hivert <[email protected]>,
#
#  Distributed under the terms of the GNU General Public License (GPL)
#                  http://www.gnu.org/licenses/
#*****************************************************************************

include '../ext/cdefs.pxi'
include '../ext/stdsage.pxi'

cpdef fibers(f, domain)

from sage.structure.parent cimport Parent
from sage.structure.list_clone cimport ClonableIntArray

cdef class FiniteSetMap_MN(ClonableIntArray):
    cpdef _setimage(self, int i, int j)
    cpdef _getimage(self, int i)
    cpdef setimage(self, i, j)
    cpdef getimage(self, i)
    cpdef domain(self)
    cpdef codomain(self)
    cpdef image_set(self)
    cpdef fibers(self)
    cpdef items(self)
    cpdef FiniteSetMap_MN _compose_internal_(self, FiniteSetMap_MN other,
                                             Parent resParent)
    cpdef check(self)

cdef class FiniteSetMap_Set(FiniteSetMap_MN): pass

cpdef FiniteSetMap_Set FiniteSetMap_Set_from_list(cls, Parent parent, list lst)
cpdef FiniteSetMap_Set FiniteSetMap_Set_from_dict(cls, Parent parent, dict d)

cdef class FiniteSetEndoMap_N(FiniteSetMap_MN): pass
cdef class FiniteSetEndoMap_Set(FiniteSetMap_Set): pass