Create Flow shop Scheduling Problem (FSP) Benchmark
Creates a benchmark function for the Flow shop Scheduling Problem.
benchmarkGeneratorFSP(a, n, m)
a |
matrix of processing times for each step and each machine |
n |
number of jobs |
m |
number of machines |
the function of type cost=f(permutation)
n=10 m=4 #ceate a matrix of processing times A <- matrix(sample(100,replace=TRUE),n,m) #create FSP objective function fun <- benchmarkGeneratorFSP(A,n,m) #evaluate fun(1:n) fun(n:1)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.