// Test of closest pair algorithms
// David Eppstein, UC Irvine, 19 Apr 1997
//
// Interface to random number generator
// so when I change from rand/srand to something better,
// I won't have to change all the code that cares about it.

extern unsigned long RandomLong();
extern double RandomDouble();
extern void SeedRandom(unsigned long);
