| CARVIEW |
diagrams-solve: Pure Haskell solver routines used by diagrams
Pure Haskell solver routines used by the diagrams project. Currently includes finding real roots of low-degree (n < 5) polynomials, and solving tridiagonal and cyclic tridiagonal linear systems.
[Skip to Readme]
Downloads
- diagrams-solve-0.1.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.1, 0.1.0.1, 0.1.1, 0.1.2, 0.1.3, 0.1.3.1 |
|---|---|
| Change log | CHANGES.markdown |
| Dependencies | base (>=4.5 && <4.9) [details] |
| Tested with | ghc ==7.4.2, ghc ==7.6.3, ghc ==7.8.4, ghc ==7.10.1 |
| License | BSD-3-Clause |
| Author | various |
| Maintainer | diagrams-discuss@googlegroups.com |
| Uploaded | by BrentYorgey at 2015-04-19T18:32:30Z |
| Category | Math |
| Home page | https://projects.haskell.org/diagrams |
| Source repo | head: git clone https://github.com/diagrams/diagrams-solve.git |
| Distributions | Debian:0.1.2, LTSHaskell:0.1.3.1, NixOS:0.1.3.1, Stackage:0.1.3.1 |
| Reverse Dependencies | 2 direct, 107 indirect [details] |
| Downloads | 18534 total (21 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2015-04-19 [all 1 reports] |
Readme for diagrams-solve-0.1
[back to package description]Miscellaneous pure-Haskell solver routines used in diagrams, a Haskell embedded domain-specific language for compositional, declarative drawing.
This is split out into a separate package with no dependencies on the rest of diagrams in case it is useful to others, but no particular guarantees are made as to the suitability or correctness of the code (though we are certainly open to bug reports).
Currently the package contains:
-
functions to find real roots of quadratic, cubic, and quartic polynomials, in
Diagrams.Solve.Polynomial -
functions to solve tridiagonal and cyclic tridiagonal systems of linear equations, in
Diagrams.Solve.Tridiagonal
