-- | Stability : stable -- -- Clebsch-Gordan coefficients and Wigner /n/-j symbols. -- -- Note that all @j@ or @m@ arguments are represented via integers equal to -- /twice/ their mathematical values. To make this distinction clear, we -- label these variables @tj@ or @tm@. -- -- The current implementation uses the exact formulas described by -- -- (). -- module WignerSymbols ( -- * 'SignedSqrtRational' SignedSqrtRational , ssr_new , ssr_split , ssr_signum , ssr_numerator , ssr_denominator , ssr_approx -- * Coupling/uncoupling coefficients , clebschGordan , clebschGordanSq , wigner3j , wigner3jSq -- * Recoupling coefficients , wigner6j , wigner6jSq , wigner9j , wigner9jSq ) where import WignerSymbols.Internal