Safe Haskell | None |
---|---|
Language | Haskell2010 |
AUTHOR
- Dr. Alistair Ward
DESCRIPTION
- Defines the set of Borwein-type algorithms (currently only one) which have been implemented; http://www.pi314.net/eng/borwein.php.
- data Algorithm squareRootAlgorithm factorialAlgorithm = Borwein1993 squareRootAlgorithm factorialAlgorithm
Types
Data-types
data Algorithm squareRootAlgorithm factorialAlgorithm Source #
- Define those Borwein-series which have been implemented.
- Though currently there's only one, provision has been made for the addition of more.
Borwein1993 squareRootAlgorithm factorialAlgorithm |
(Eq factorialAlgorithm, Eq squareRootAlgorithm) => Eq (Algorithm squareRootAlgorithm factorialAlgorithm) Source # | |
(Read factorialAlgorithm, Read squareRootAlgorithm) => Read (Algorithm squareRootAlgorithm factorialAlgorithm) Source # | |
(Show factorialAlgorithm, Show squareRootAlgorithm) => Show (Algorithm squareRootAlgorithm factorialAlgorithm) Source # | |
(Default squareRootAlgorithm, Default factorialAlgorithm) => Default (Algorithm squareRootAlgorithm factorialAlgorithm) Source # | |
(Algorithmic squareRootAlgorithm, Algorithmic factorialAlgorithm) => Algorithmic (Algorithm squareRootAlgorithm factorialAlgorithm) Source # | |