Learn R Programming

caRamel (version 1.0)

downsize: downsize

Description

reduces the number of individuals in a population to only one individual per box up to a given accuracy

Usage

downsize(points, Fo, prec)

Arguments

points

: matrix of objectives

Fo

: rank on the front of each point (1: dominates on the Pareto)

prec

: (double, length = nobj) desired accuracy for sorting objectives

Value

vector indices

Examples

Run this code
# NOT RUN {
# Definition of the parameters
points <- matrix(rexp(200), 100, 2)
prec <- c(1.e-3, 1.e-3)
Fo <- sample(1:100, 100)
# Call the function
res <- downsize(points, Fo, prec)

# }

Run the code above in your browser using DataLab