Debugged ZigzagPersistence (having added heavier consistency checking)
* Added DEBUG_CONTAINERS option (uses std::__debug::* containers for chains
and in ZigzagPersistence)
* Added SizeStorage specialization for std::deque<T>
* ZigzagPersistence got a lot more consistency checking (in debug mode only,
which now crawls); as a result it's been debugged (running on non-trivial examples)
* examples/rips/rips-zigzag takes command-line options
* added ChainWrapper::clear()
* added Simplex::VertexDimensionComparison
* added PairwiseDistances class (for computing distances between points in a
container according to a distance functor)
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;
}