21 lines
745 B
Python
21 lines
745 B
Python
# Copyright 2013-2020 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 RRsolnp(RPackage):
|
|
"""General Non-linear Optimization Using Augmented Lagrange Multiplier
|
|
Method."""
|
|
|
|
homepage = "https://cloud.r-project.org/package=Rsolnp"
|
|
url = "https://cloud.r-project.org/src/contrib/Rsolnp_1.16.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/Rsolnp"
|
|
|
|
version('1.16', sha256='3142776062beb8e2b45cdbc4fe6e5446b6d33505253d79f2890fe4178d9cf670')
|
|
|
|
depends_on('r@2.10.0:', type=('build', 'run'))
|
|
depends_on('r-truncnorm', type=('build', 'run'))
|