-- | Implements a LLL lattice reduction algorithm with floating point arithmetic. References for this algorithm:
--
--   * Lattice Basis Reduction: Improved Practical Algorithms and Solving Subset Sum Problems, C. P. Schorr and M. Euchner (1993)
--
module Math.Lattices.LLLFP (
    lllFP,
    lllFPDelta
) where

lllFP = undefined
lllFPDelta = undefined