Changes in Python Bindings:
* the exposed C++ simplex has Empty data
* Python Simplex constructor with data as well as data-based
comparison functions are implemented in pure Python
#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();
}
}