| author | Dmitriy Morozov <dmitriy@mrzv.org> |
| Mon, 13 Apr 2009 20:38:46 -0700 | |
| branch | dev |
| changeset 127 | 406c6cc00b9c |
| parent 104 | 2cc1db3b98c6 |
| child 128 | a5fd0c2a1c88 |
| permissions | -rw-r--r-- |
#include <topology/static-persistence.h> #include "python-filtration.h" #include <boost/python.hpp> using namespace boost::python; #include "python-static-persistence.h" boost::shared_ptr<SPersistence> init_from_filtration(object f) { ListFiltration& lf = extract<ListFiltration&>(f); boost::shared_ptr<SPersistence> p(new SPersistence(lf)); return p; } void export_static_persistence() { class_<SPersistenceNode>("StaticPersistenceNode") .def_readonly("pair", &SPersistenceNode::pair) .def("sign", &SPersistenceNode::sign) .def_readonly("cycle", &SPersistenceNode::cycle) ; class_<SPersistence>("StaticPersistence", no_init) .def("__init__", make_constructor(&init_from_filtration)) .def("pair_simplices", (void (SPersistence::*)()) &SPersistence::pair_simplices) .def("__iter__", range(&SPersistence::begin, &SPersistence::end)) .def("__len__", &SPersistence::size) ; }