File: control

package info (click to toggle)
spectra 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,788 kB
  • sloc: cpp: 23,044; ansic: 175; fortran: 131; makefile: 90
file content (37 lines) | stat: -rw-r--r-- 1,610 bytes parent folder | download
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
37
Source: spectra
Section: math
Priority: optional
Maintainer: Debian Math Team <team+math@tracker.debian.org>
Uploaders: Julien Schueller <schueller@phimeca.com>,
           Pierre Gruet <pgt@debian.org>
Build-Depends: debhelper-compat (= 13),
               cmake,
               libeigen3-dev
Standards-Version: 4.7.2
Homepage: https://spectralib.org/
Vcs-Browser: https://salsa.debian.org/math-team/spectra
Vcs-Git: https://salsa.debian.org/math-team/spectra.git
Rules-Requires-Root: no

Package: libspectra-dev
Section: libdevel
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
         libeigen3-dev
Description: library for large scale eigenvalue problems (development files)
 Spectra stands for Sparse Eigenvalue Computation Toolkit as a Redesigned
 ARPACK. It is a C++ library for large scale eigenvalue problems, built on top
 of Eigen, an open source linear algebra library.
 .
 Spectra is implemented as a header-only C++ library, whose only dependency,
 Eigen, is also header-only. Hence Spectra can be easily embedded in C++
 projects that require calculating eigenvalues of large matrices.
 .
 Spectra is designed to calculate a specified number of eigenvalues of a large
 square matrix. Usually this number of eigenvalues is much smaller than the
 size of the matrix, so that only a few eigenvalues and eigenvectors are
 computed, which in general is more efficient than calculating the whole
 spectral decomposition. Users can choose eigenvalue selection rules to pick
 the eigenvalues of interest, such as the largest k eigenvalues, or eigenvalues
 with largest real parts, etc.