bindings/python/python-simplex.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Fri, 02 Jan 2009 14:54:15 -0800
branchdev
changeset 108 e096f8892a04
parent 104 2cc1db3b98c6
child 127 406c6cc00b9c
permissions -rw-r--r--
Added rips-zigzag; in the process caught a number of bugs in ZigzagPersistence (added check_consistency() to it)

#ifndef __PYTHON_SIMPLEX_H__
#define __PYTHON_SIMPLEX_H__

#include <topology/simplex.h>

typedef                             int                                         Vertex;
typedef                             double                                      Data;
//typedef                             Empty<>                                     Data;
typedef                             Simplex<Vertex, Data>                       SimplexVD;

#endif