bindings/python/dionysus/zigzag.py
author Aravindakshan Babu <akshan@stanford.edu>
Wed, 11 Aug 2010 17:07:09 -0700
branchdev
changeset 218 4f70a473e34b
parent 188 23cb832e035d
permissions -rw-r--r--
Added a __iter__ method to the PersistenceDiagram class in python. Renamed the points iterator to the intervals iterator.

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