bindings/python/dionysus/zigzag.py
author Christos Mantoulidis <cmad@stanford.edu>
Mon, 27 Jul 2009 21:42:51 -0700
branchdev
changeset 152 fdc2835b3e88
parent 132 2a737609b8bf
child 188 23cb832e035d
permissions -rw-r--r--
added logging to WeightedRips (still needs debugging)

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