hgeometry-0.14: src/Algorithms/Geometry/EuclideanMST/EuclideanMST.hs
--------------------------------------------------------------------------------
-- |
-- Module : Algorithms.Geometry.EuclideanMST.EuclideanMST
-- Copyright : (C) Frank Staals
-- License : see the LICENSE file
-- Maintainer : Frank Staals
--
-- \(O(n\log n)\) time algorithm algorithm to compute the Euclidean minimum
-- spanning tree of a set of \(n\) points in \(\mathbb{R}^2\).
--
--------------------------------------------------------------------------------
module Algorithms.Geometry.EuclideanMST.EuclideanMST
{-# DEPRECATED "This module will be deleted after 2021-06-01. \
\Use Algorithms.Geometry.EuclideanMST instead." #-}
( module Algorithms.Geometry.EuclideanMST ) where
import Algorithms.Geometry.EuclideanMST