summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-numderiv/package.py
blob: 158b40eca59bf8918b59c55b93b060e58944a512 (plain) (blame)
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
# Copyright 2013-2024 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.package import *


class RNumderiv(RPackage):
    """Accurate Numerical Derivatives.

    Methods for calculating (usually) accurate numerical first and second order
    derivatives. Accurate calculations are done using 'Richardson"s'
    extrapolation or, when applicable, a complex step derivative is available.
    A simple difference method is also provided. Simple difference is (usually)
    less accurate but is much quicker than 'Richardson"s' extrapolation and
    provides a useful cross-check. Methods are provided for real scalar and
    vector valued functions."""

    cran = "numDeriv"

    version(
        "2016.8-1.1", sha256="d8c4d19ff9aeb31b0c628bd4a16378e51c1c9a3813b525469a31fe89af00b345"
    )
    version("2016.8-1", sha256="1b681d273697dc780a3ac5bedabb4a257785732d9ca4ef68e4e4aac8b328d11e")

    depends_on("r@2.11.1:", type=("build", "run"))