bindings/python/dionysus/zigzag.py
author Dmitriy Morozov <dmitriy@mrzv.org>
Wed, 29 Apr 2009 10:16:03 -0700
branchdev
changeset 132 2a737609b8bf
child 188 23cb832e035d
permissions -rw-r--r--
Cleaned up simplex comparison functions, rip-pairwise.py outputs a diagram, auxilliary add_simplices() + remove_simplices() for zigzags

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