// Test of closest pair algorithms
// David Eppstein, UC Irvine, 19 Apr 1997
//
// Base definitions for applications of closest pair data strux.

#ifndef ALGORITHMS_H
#define ALGORITHMS_H

#include "ClosestPairs.h"
#include "PointSet.h"

typedef double CPApplication(unsigned long npoints,
							 PointSet & ptset,
							 ClosestPairs & cp);

#endif
