forked from Evolutionary-Optimization-Laboratory/rmoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
81 lines (81 loc) · 2 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: rmoo
Title: Multi-Objective Optimization in R
Version: 0.3.0
Date: 2023-09-01
Authors@R:
c(person(given = "Francisco",
family = "Benitez",
role = c("aut", "cre"),
email = "[email protected]"),
person(given = "Diego P.",
family = "Pinto-Roa",
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-2479-9876")))
Description: The 'rmoo' package is a framework for multi- and many-objective
optimization, which allows researchers and users versatility
in parameter configuration, as well as tools for analysis, replication
and visualization of results. The 'rmoo' package was built as a fork of
the 'GA' package by Luca Scrucca(2017) <DOI:10.32614/RJ-2017-008> and
implementing the Non-Dominated Sorting Genetic Algorithms proposed
by K. Deb's.
License: GPL (>= 2)
Encoding: UTF-8
Language: es
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Collate:
'AllClasses.R'
'associate.R'
'crowding_distance.R'
'data.R'
'generate_reference_points.R'
'geneticoperator.R'
'get_fixed_rowsum_integer_matrix.R'
'miscfun.R'
'AllGenerics.R'
'niching.R'
'non_dominated_fronts.R'
'parallel.R'
'utils.R'
'nsga.R'
'nsga2.R'
'nsga3.R'
'rnsga2.R'
'modified_crowding_distance.R'
'rmooControl.R'
'performance_metrics.R'
'reference_point_multi_layer.R'
'rmoo.R'
'rmoo_main.R'
'sharing.R'
'update_points.R'
'zzz.R'
Imports:
stats,
utils,
graphics,
methods,
foreach,
GA,
grDevices,
ggplot2,
plotly,
BBmisc
URL: https://github.com/Evolutionary-Optimization-Laboratory/rmoo/
BugReports: https://github.com/Evolutionary-Optimization-Laboratory/rmoo/issues/
Suggests:
testthat,
covr,
rgl,
ecr,
emoa,
cdata,
dplyr,
reshape2,
parallel,
doParallel,
doRNG (>= 1.6)
Depends:
R (>= 2.10)