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)
#include "grid2D.h"
#include <iostream>
int main()
{
Grid2D grid(40,60);
int i = 0;
for (int x = 0; x < 40; ++x)
for (int y = 0; y < 60; ++y)
{
grid(x,y) = i++;
}
std::cout << grid(20,30) << std::endl;
std::cout << grid << std::endl;
}