File: Recurrences.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 (16 lines) | stat: -rw-r--r-- 553 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- |
-- Module:      Math.NumberTheory.Recurrences
-- Copyright:   (c) 2018 Alexandre Rodrigues Baldé
-- Licence:     MIT
-- Maintainer:  Alexandre Rodrigues Baldé <alexandrer_b@outlook.com>
--

module Math.NumberTheory.Recurrences
    ( module Math.NumberTheory.Recurrences.Linear
    , module Math.NumberTheory.Recurrences.Bilinear
    , module Math.NumberTheory.Recurrences.Pentagonal
    ) where

import Math.NumberTheory.Recurrences.Bilinear
import Math.NumberTheory.Recurrences.Linear
import Math.NumberTheory.Recurrences.Pentagonal (partition)