bindings/python/rips.cpp
author Christos Mantoulidis <cmad@stanford.edu>
Tue, 04 Aug 2009 13:23:16 -0700
branchdev
changeset 156 f75fb57d2831
parent 130 580eaa850c4f
permissions -rw-r--r--
Changed implementation of WeightedRips to store simplex values (max distance between simplices' vertices) as an invisible layer on top of each simplex object, so that the data() field of WeightedRips has been freed for use by the users again.

#include <topology/rips.h>
#include <boost/python.hpp>
namespace bp = boost::python;

#include "rips.h"                   // defines RipsWithDistances
namespace dp = dionysus::python;

#include <iostream>


/* Various wrappers for exposing Rips to Python */
// Constructor from distances
boost::shared_ptr<dp::RipsWithDistances>        init_from_distances(bp::object distances)
{ 
    boost::shared_ptr<dp::RipsWithDistances>    p(new dp::RipsWithDistances(distances));
    return p;
}

void export_rips()
{
    bp::class_<dp::RipsWithDistances>("Rips", bp::no_init)
        .def("__init__",            bp::make_constructor(&init_from_distances))
        .def("generate",            &dp::RipsWithDistances::generate)
        .def("generate",            &dp::RipsWithDistances::generate_candidates)
        .def("vertex_cofaces",      &dp::RipsWithDistances::vertex_cofaces)
        .def("vertex_cofaces",      &dp::RipsWithDistances::vertex_cofaces_candidate)
        .def("edge_cofaces",        &dp::RipsWithDistances::edge_cofaces)
        .def("edge_cofaces",        &dp::RipsWithDistances::edge_cofaces_candidates)

        .def("cmp",                 &dp::RipsWithDistances::cmp)
        .def("cmp",                 &dp::RipsWithDistances::cmp_native)
        .def("eval",                &dp::RipsWithDistances::eval)
        .def("eval",                &dp::RipsWithDistances::eval_native)
    ;
}