diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-04-20 04:35:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-20 11:35:47 +0200 |
commit | 7b54389e12a9455460c77ea10722e4843cd09ef7 (patch) | |
tree | 9799d990d43581ce32470a71af7f2b2c0d7fb30e | |
parent | 5a3a014aae985bb85a2ae472e882433a1a716280 (diff) | |
download | spack-7b54389e12a9455460c77ea10722e4843cd09ef7.tar.gz spack-7b54389e12a9455460c77ea10722e4843cd09ef7.tar.bz2 spack-7b54389e12a9455460c77ea10722e4843cd09ef7.tar.xz spack-7b54389e12a9455460c77ea10722e4843cd09ef7.zip |
r-compquadform: new package (#23094)
-rw-r--r-- | var/spack/repos/builtin/packages/r-compquadform/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-compquadform/package.py b/var/spack/repos/builtin/packages/r-compquadform/package.py new file mode 100644 index 0000000000..2cd7184238 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-compquadform/package.py @@ -0,0 +1,18 @@ +# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class RCompquadform(RPackage): + """Distribution Function of Quadratic Forms in Normal Variables: + + Computes the distribution function of quadratic forms in normal variables + using Imhof's method, Davies's algorithm, Farebrother's algorithm or Liu et + al.'s algorithm.""" + + cran = "CompQuadForm" + + version('1.4.3', sha256='042fc56c800dd8f5f47a017e2efa832caf74f0602824abf7099898d9708660c4') |