// Test of closest pair algorithms // David Eppstein, UC Irvine, 19 Apr 1997 // // Complain when something goes wrong (e.g. no more memory) #ifndef ERROR_H #define ERROR_H extern void error(const char * error_description); #endif