File: Recurrences.hs

package info (click to toggle)
haskell-arithmoi 0.13.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 964 kB
  • sloc: haskell: 10,379; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (3)
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)