bindings/python/dionysus/zigzag.py
author Christos Mantoulidis <cmad@stanford.edu>
Tue, 28 Jul 2009 15:04:06 -0700
branchdev
changeset 155 1dde8a05fcd7
parent 132 2a737609b8bf
child 188 23cb832e035d
permissions -rw-r--r--
Added rips-weighted-cohomology, and channeled WeightedRips logging to the same channel as Rips

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