// Test of closest pair algorithms
// David Eppstein, UC Irvine, 19 Apr 1997
//
// Common include file to gather all implementations of closest pair data strux.

#include "BruteForce.h"
#include "FastPair.h"
#include "Neighbors.h"
#include "Quadtree.h"
#include "CongaLine.h"
#include "MultiConga.h"
