-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconjugateGradient.cabal
More file actions
36 lines (32 loc) · 1.52 KB
/
conjugateGradient.cabal
File metadata and controls
36 lines (32 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Cabal-Version: 2.2
Name: conjugateGradient
Version: 2.2
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 and 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.
Such large sparse matrices arise naturally in many engineering problems, such as
in ASIC placement algorithms and when solving partial differential equations.
Copyright: Levent Erkok, 2013-2020
License: BSD-3-Clause
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
Extra-Source-Files: INSTALL, README, COPYRIGHT, RELEASENOTES
Tested-With : GHC==8.10.2
source-repository head
type: git
location: git://github.com/LeventErkok/conjugateGradient.git
Library
default-language: Haskell2010
ghc-options : -Wall
Build-Depends : base >= 4.11 && < 5, random, containers
Exposed-modules : Math.ConjugateGradient