combinat-0.2.7.0: Math/Combinat/Partitions.hs
-- | Partitions of integers and multisets.
-- Integer partitions are nonincreasing sequences of positive integers.
--
-- See:
--
-- * Donald E. Knuth: The Art of Computer Programming, vol 4, pre-fascicle 3B.
--
-- * <http://en.wikipedia.org/wiki/Partition_(number_theory)>
--
{-# LANGUAGE BangPatterns #-}
module Math.Combinat.Partitions
( module Math.Combinat.Partitions.Integer
)
where
--------------------------------------------------------------------------------
import Math.Combinat.Partitions.Integer
--------------------------------------------------------------------------------