-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHEigs.cabal
36 lines (32 loc) · 1.23 KB
/
HEigs.cabal
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
Name: HEigs
Version: 0.0.1
cabal-version: >= 1.8
License: BSD3
License-File: LICENSE
Author: Christopher Miller
Synopsis: An interface to ARPACK for sparse eigenvalue problems.
Build-Type: Simple
Category: Numeric, Linear Algepra, Eigenvalues, Sparse
Maintainer: [email protected]
Description: The aim of this package is to emulate MATLAB and SciPy's 'eigs'
routines for finding a small number of eigenvalues from large
sparse linear systems.
Currently only supports a limited subset of ARPACK's functionality.
I plan to add more in the future but if there's a specific
type of eigenvalue problem you need solved please email and I'll
make supporting that a priority.
source-repository head
type: git
location: https://github.com/cmiller730/HEigs/
tag: 0.0.1
Library
hs-source-dirs: lib
build-depends: base <=4.6.0.1, monad-loops >=0.4.2, vector,storable-complex>=0.2
Exposed-modules: Numeric.LinearAlgebra.UnsymmetricEigen
Extensions: ForeignFunctionInterface
extra-libraries: arpack, openblas
Test-Suite test-unsymmetric
hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: test-unsymmetric.hs
build-depends: base, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, HEigs, vector