sigma-ij-0.2: src/Math/ThomPoly/Formulae.hs
-- | For some special cases (like @j=1@), we have explicit formulae.
--
-- TODO: implement them! (this is just a placeholder)
module Math.ThomPoly.Formulae where
--------------------------------------------------------------------------------
data SigmaI1 = SigmaI1
{ _i :: !Int
, _n :: !Int
}
deriving (Eq,Show)
--------------------------------------------------------------------------------