bindings/python/dionysus/zigzag.py
author Dmitriy Morozov <dmitriy@mrzv.org>
Tue, 12 Jan 2010 14:36:38 -0800
branchdev
changeset 190 6edd7c861bc0
parent 188 23cb832e035d
permissions -rw-r--r--
Fixed Python constructor of CohomologyPersistence + minor changes to cocycle.py

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[1] == 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() - 1, birth))
        complex[s] = None
        if d is not None:
            if report_local or not d[1] == birth:
                deaths.append(d)
    return deaths