File: Moduli.hs

package info (click to toggle)
haskell-arithmoi 0.13.0.0-1
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 988 kB
  • sloc: haskell: 10,437; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 708 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- |
-- Module:      Math.NumberTheory.Moduli
-- Copyright:   (c) 2011 Daniel Fischer
-- Licence:     MIT
-- Maintainer:  Daniel Fischer <daniel.is.fischer@googlemail.com>
--
-- Miscellaneous functions related to modular arithmetic.
--

module Math.NumberTheory.Moduli
  ( module Math.NumberTheory.Moduli.Class
  , module Math.NumberTheory.Moduli.Chinese
  , module Math.NumberTheory.Moduli.Multiplicative
  , module Math.NumberTheory.Moduli.Singleton
  , module Math.NumberTheory.Moduli.Sqrt
  ) where

import Math.NumberTheory.Moduli.Chinese
import Math.NumberTheory.Moduli.Class
import Math.NumberTheory.Moduli.Multiplicative
import Math.NumberTheory.Moduli.Singleton
import Math.NumberTheory.Moduli.Sqrt