summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-mco/package.py
blob: 53282a5aa0beb44befb3a234b2e8c78e567c2cae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2022 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 RMco(RPackage):
    """Multiple Criteria Optimization Algorithms and Related Functions.

    A collection of function to solve multiple criteria optimization problems
    using genetic algorithms (NSGA-II). Also included is a collection of test
    functions."""

    cran = "mco"

    version('1.15.6', sha256='17ebe279cb9c89b7cd8054ac50d3b657d2b10dadbc584b88da7e79c3a9680582')
    version('1.0-15.1', sha256='3c13ebc8c1f1bfa18f3f95b3998c57fde5259876e92456b6c6d4c59bef07c193')
    version('1.0-15', sha256='a25e3effbb6dcae735fdbd6c0bfc775e9fbbcc00dc00076b69c53fe250627055')

    depends_on('r@3.0.0:', type=('build', 'run'))