powered by
Creates a benchmark function for the Flow shop Scheduling Problem.
benchmarkGeneratorFSP(a, n, m)
the function of type cost=f(permutation)
matrix of processing times for each step and each machine
number of jobs
number of machines
benchmarkGeneratorQAP, benchmarkGeneratorTSP, benchmarkGeneratorWT
benchmarkGeneratorQAP
benchmarkGeneratorTSP
benchmarkGeneratorWT
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)
Run the code above in your browser using DataLab