PalmerTrapezes: Palmer and trapezes heuristics

View source: R/LocalSearchFSFunctions.R

PalmerTrapezesR Documentation

Palmer and trapezes heuristics

Description

Palmer and Trapezes heuristics for the permutative flowshop problem.

Usage

PalmerTrapezes(M)

Arguments

M

A matrix object storing the time to process task j (column) in machine i (row).

Value

pal A vector with the positions of the solution of the Palmer heuristic.

tra A vector with the positions of the solution of the trapezes heuristic.

Examples

set.seed(2020)
instance <- matrix(sample(10:90, 100, replace=TRUE), 5, 20)
PalmerTrapezes(instance)

jmsallan/combheuristics documentation built on June 22, 2022, 4:11 p.m.