-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
81 lines (81 loc) · 3.83 KB
/
DESCRIPTION
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Package: rmumps
Type: Package
Title: Wrapper for MUMPS Library
Version: 5.2.1-30
Date: 2024-06-14
Authors@R: c(person("Serguei", "Sokol", role=c("aut", "cre"), email="sokol@insa-toulouse.fr"),
person("Emmanuel", "Agullo", role="ctb"),
person("Patrick", "Amestoy", role=c("ctb", "cph")),
person("Maurice", "Bremond", role="ctb"),
person("Alfredo", "Buttari", role="ctb"),
person("Philippe", "Combes", role="ctb"),
person("Marie", "Durand", role="ctb"),
person("Aurelia", "Fevre", role="ctb"),
person("Abdou", "Guermouche", role="ctb"),
person("Guillaume", "Joslin", role="ctb"),
person("Jacko", "Koster", role="ctb"),
person("Jean-Yves", "L'Excellent", role="ctb"),
person("Stephane", "Pralet", role="ctb"),
person("Chiara", "Puglisi", role="ctb"),
person("Francois-Henry", "Rouet", role="ctb"),
person("Wissam", "Sid-Lakhdar", role="ctb"),
person("Tzvetomila", "Slavova", role="ctb"),
person("Bora", "Ucar", role="ctb"),
person("Clement", "Weisbecker", role="ctb"),
person("Juergen", "Schulze", role="ctb"),
person("George", "Karypis", role="ctb"),
person("Douglas C.", "Schmidt", role="ctb"),
person("Isamu", "Hasegawa", role="ctb"),
person("Alexander", "Chemeris", role="ctb"),
person("Makoto", "Matsumoto", role="ctb"),
person("Takuji", "Nishimura", role="ctb"),
person("Francois", "Pellegrini", role="ctb"),
person("David", "Goudin", role="ctb"),
person("Pascal", "Henon", role="ctb"),
person("Pierre", "Ramet", role="ctb"),
person("Sebastien", "Fourestier", role="ctb"),
person("Jun-Ho", "Her", role="ctb"),
person("Cedric", "Chevalier", role="ctb"),
person("Timothy A.", "Davis", role=c("ctb", "cph")),
person("Iain S.", "Duff", role=c("ctb", "cph")),
person("John K.", "Reid", role=c("ctb", "cph")),
person("Richard", "Stallman", role="ctb"),
person("Samuel", "Thibault", role=c("ctb", "cph")),
person("CERFACS", role="cph"),
person("CNRS", role="cph"),
person("ENS Lyon", role="cph"),
person("INP Toulouse", role="cph"),
person("INRIA", role="cph"),
person("University of Bordeaux", role="cph"),
person("Regents of the University of Minnesota", role="cph"),
person("Free Software Foundation, Inc", role="cph"),
person("Alexander Chemeris", role="cph"),
person("Makoto Matsumoto", role="cph"),
person("Takuji Nishimura", role="cph"),
person("Universite de Bordeaux", role="cph"),
person("CNRS", role="cph"),
person("INSA", role="cph"),
person("INRAE", role="cph")
)
Maintainer: Serguei Sokol <sokol@insa-toulouse.fr>
Description: Some basic features of 'MUMPS' (Multifrontal Massively Parallel
sparse direct Solver) are wrapped in a class whose methods can be used
for sequentially solving a sparse linear system (symmetric or not)
with one or many right hand sides (dense or sparse).
There is a possibility to do separately symbolic analysis,
LU (or LDL^t) factorization and system solving.
Third part ordering libraries are included and can be used: 'PORD', 'METIS', 'SCOTCH'.
'MUMPS' method was first described in Amestoy et al. (2001) <doi:10.1137/S0895479899358194>
and Amestoy et al. (2006) <doi:10.1016/j.parco.2005.07.004>.
License: GPL (>= 2)
Depends: methods
Imports: Rcpp (>= 0.12.0)
LinkingTo: Rcpp
SystemRequirements: GNU Make
NeedsCompilation: yes
Biarch: yes
Suggests: testthat, Matrix, slam
BugReports: https://github.com/sgsokol/rmumps/issues
URL: http://www.mumps-solver.org/, https://github.com/sgsokol/rmumps/
RoxygenNote: 7.0.2
Encoding: UTF-8