bindings/python/dynamic-persistence.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Tue, 05 Apr 2011 18:29:50 -0700
branchdev
changeset 242 a06b4b515476
parent 232 edbbf84fde9e
permissions -rw-r--r--
alphashapes2d can handle degenerate inputs (thanks to Taras Galkovskyi for the bug report and the fix)

#ifndef __PYTHON_DYNAMIC_PERSISTENCE_CHAINS_H__
#define __PYTHON_DYNAMIC_PERSISTENCE_CHAINS_H__

#include <topology/dynamic-persistence.h>
#include "static-persistence.h"

namespace dionysus {
namespace python   {

typedef         DynamicPersistenceChains<>          DPersistenceChains;
typedef         DPersistenceChains::OrderElement    DPersistenceChainsNode;
typedef         DPersistenceChains::OrderIndex      DPersistenceChainsIndex;
typedef         DPersistenceChains::SimplexMap<PythonFiltration>        
                                                    DPersistenceChainsSimplexMap;
} } // namespace dionysus::python

#endif