bindings/python/filtration.h
author Dmitriy Morozov <dmitriy@mrzv.org>
Sun, 26 Nov 2017 12:07:49 -0800
changeset 291 5d387c35465b
parent 246 88f7806633e0
permissions -rw-r--r--
Add Vanessa Robins' periodic alpha shapes 2D code

#ifndef __PYTHON_FILTRATION_H__
#define __PYTHON_FILTRATION_H__

#include <topology/filtration.h>
#include <boost/python.hpp>
#include "simplex.h"
#include "utils.h"                      // for ListRandomAccessIterator

namespace bp = boost::python;

namespace dionysus {
namespace python   {

typedef         Filtration<SimplexVD>                       PythonFiltration;

} } // namespace dionysus::python

#endif