// Test of closest pair algorithms // David Eppstein, UC Irvine, 19 Apr 1997 // // Generate table of random distances #include "PointSet.h" class RandomDistance : public PointSet { long seed; public: RandomDistance(unsigned long np); double operator() (point i, point j); };