bindings/python/dionysus/zigzag.py
author Camille Wormser <camille.wormser@normalesup.org>
Wed, 12 Aug 2009 07:16:35 -0700
branchdev
changeset 162 eec482c29319
parent 132 2a737609b8bf
child 188 23cb832e035d
permissions -rw-r--r--
Removing unused parameter names in order to avoid warnings -> no warning anymore in zigzag-persistence

def add_simplices(zz, simplices, complex, birth, report_local = False):
    deaths = []
    for s in simplices:
        i,d = zz.add([complex[sb] for sb in s.boundary], (s.dimension(), birth))
        complex[s] = i
        if d is not None:
            if report_local or not d == birth:
                deaths.append(d)
    return deaths
            

def remove_simplices(zz, simplices, complex, birth, report_local = False):
    deaths = []
    for s in simplices:
        d = zz.remove(complex[s], (s.dimension(), birth))
        complex[s] = None
        if d is not None:
            if report_local or not d == birth:
                deaths.append(d)
    return deaths