mcfadd / Job_Shop_Schedule_Problem

Parallel Tabu Search and Genetic Algorithm for the Job Shop Schedule Problem with Sequence Dependent Set Up Times

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Understand the input data

stevietran opened this issue · comments

Could you explain the "pieces" parameter in class "Task"? Is this like the product quantities of a task? What it is used for in the algorithm?

@stevietran

Yes, the pieces parameter is like the product quantities. The machine RunSpeeds are in pieces/minute.

For example, say job 1, task 1 has 200 pieces and is ran on machine 1 with a speed of 10 pieces/minute, then the makespan for running job 1, task 1 on machine 1 is 20 minutes.