benchmarkGeneratorFSP: Create Flow shop Scheduling Problem (FSP) Benchmark

View source: R/permutationBenchmarkFunctions.R

benchmarkGeneratorFSPR Documentation

Create Flow shop Scheduling Problem (FSP) Benchmark

Description

Creates a benchmark function for the Flow shop Scheduling Problem.

Usage

benchmarkGeneratorFSP(a, n, m)

Arguments

a

matrix of processing times for each step and each machine

n

number of jobs

m

number of machines

Value

the function of type cost=f(permutation)

See Also

benchmarkGeneratorQAP, benchmarkGeneratorTSP, benchmarkGeneratorWT

Examples

n=10
m=4
#ceate a matrix of processing times
A <- matrix(sample(n*m,replace=TRUE),n,m) 
#create FSP objective function 
fun <- benchmarkGeneratorFSP(A,n,m)
#evaluate
fun(1:n)
fun(n:1)


CEGO documentation built on May 29, 2024, 3:35 a.m.