packages feed

bed-and-breakfast-0.1.3: bed-and-breakfast.cabal

Name:           bed-and-breakfast
Version:        0.1.3
Synopsis:       Efficient Matrix operations in 100% Haskell.
Description:    Efficient Matrix operations in 100% Haskell.
                .
                [@v0.1@] Initial version, features @det@,
                    basic arithmetic operations, and instances for
                    'Float', 'Double', 'Complex', and 'Rational'.
                .
                [@v0.1.1@] Fixed wrong algorithm for computing the
                    inverse of a 'Matrix'.
                .
                [@v0.1.2@] Added instances for @Num Matrix@,
                    @Fractional Matrix@, and @Eq Matrix@.
                .
                [@v0.1.3@] @inv@ is now a total function and will
                    no longer call `error' if a matrix is not
                    invertible. Also @Matrix@ derives 'Data.Typeable'
                    now.

License:        MIT
License-File:   LICENSE
Author:         Julian Fleischer <julian.fleischer@fu-berlin.de>
Maintainer:     Julian Fleischer <julian.fleischer@fu-berlin.de>
Build-Type:     Simple
Cabal-Version:  >= 1.8
Category:       Numeric, Math
Stability:      stable
Homepage:       http://hub.darcs.net/scravy/bed-and-breakfast

Source-Repository head
    type: darcs
    location: hub.darcs.net:bed-and-breakfast

Library
    Exposed-Modules:    Numeric.Matrix
    Build-Depends:      base >= 4.5 && < 5,
                        deepseq >= 1.3,
                        array >= 0.4
    Hs-Source-Dirs:     src