View source: R/LocalSearchFSFunctions.R
PalmerTrapezes | R Documentation |
Palmer and Trapezes heuristics for the permutative flowshop problem.
PalmerTrapezes(M)
M |
A matrix object storing the time to process task j (column) in machine i (row). |
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.
set.seed(2020) instance <- matrix(sample(10:90, 100, replace=TRUE), 5, 20) PalmerTrapezes(instance)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.