Modified WeightedRips::generate() to incorporate the simplex-appearance-value computation (before it would have to be done explicitly by the user by a for-loop after the call to generate())
#include <utilities/eventqueue.h>
#include <functional>
#include <iostream>
int main()
{
typedef EventQueue<int, std::less<int> > EQ;
typedef EQ::iterator iterator;
EQ queue;
iterator i = queue.push(4);
queue.push(2);
queue.push(7);
iterator j = queue.push(6);
queue.push(5);
*i = 8;
queue.update(i);
queue.remove(j);
while (!queue.empty())
{
std::cout << *queue.top() << std::endl;
queue.pop();
}
}