Added code to expose the persistence_diagram class, the bottleneck_distance function and the point class to python.
Most of the commonly used methods for each class have been exported.
The constructor for point now requires that a data argument be provided along with x and y coord. This needs to be made optional.
The constructor for persistence_diagram could possibly be rewritten as well.
template<class S>
typename ConeSimplex<S>::Cycle
ConeSimplex<S>::boundary() const
{
Cycle bdry;
typename Parent::Cycle pbdry = Parent::boundary();
for (typename Parent::Cycle::const_iterator cur = pbdry.begin(); cur != pbdry.end(); ++cur)
bdry.push_back(Self(*cur, coned_));
if (coned_)
bdry.push_back(Self(*this, false));
return bdry;
}
template<class S>
std::ostream&
ConeSimplex<S>::operator<<(std::ostream& out) const
{
Parent::operator<<(out) << ' ';
if (coned_) out << "[coned]";
return out;
}