packages feed

conjugateGradient-1.0: conjugateGradient.cabal

Name:          conjugateGradient
Version:       1.0
Category:      Math
Synopsis:      Sparse matrix linear-equation solver
Description:   Sparse matrix linear-equation solver, using the conjugate gradient algorithm. Note that the
               technique only applies to matrices that are:
               .
                  * Symmetric
               .
                  * Positive-definite
               .
               See <http://en.wikipedia.org/wiki/Conjugate_gradient_method> for details.
               .
               The conjugate gradient method can handle very large sparse matrices, where direct
               methods (such as LU decomposition) are way too expensive to be useful in practice.
Copyright:     Levent Erkok, 2013
License:       BSD3
License-file:  LICENSE
Stability:     Experimental
Author:        Levent Erkok
Homepage:      http://github.com/LeventErkok/ConjugateGradient
Bug-reports:   http://github.com/LeventErkok/ConjugateGradient/issues
Maintainer:    Levent Erkok (erkokl@gmail.com)
Build-Type:    Simple
Cabal-Version: >= 1.14
Extra-Source-Files: INSTALL, README, COPYRIGHT, RELEASENOTES

source-repository head
    type:       git
    location:   git://github.com/LeventErkok/ConjugateGradient.git

Library
  default-language: Haskell2010
  ghc-options     : -Wall
  Build-Depends   : base >= 4 && < 5, random, containers
  Exposed-modules : Math.ConjugateGradient