hgeometry-0.14: src/Algorithms/Geometry/ClosestPair.hs
--------------------------------------------------------------------------------
-- |
-- Module : Algorithms.Geometry.ClosestPair
-- Copyright : (C) Frank Staals
-- License : see the LICENSE file
-- Maintainer : Frank Staals
--
-- \(O(n\log n)\) time algorithm to compute the
-- closest pair among a set of \(n\) points in \(\mathbb{R}^2\).
--
--------------------------------------------------------------------------------
module Algorithms.Geometry.ClosestPair( closestPair ) where
import Algorithms.Geometry.ClosestPair.DivideAndConquer