Class Task


  • public final class Task
    extends Object
    Represents a task (job,task) of a jobshop problem. Example : (2, 3) represents the fourth task of the third job. (remember that we start counting at 0)
    • Field Detail

      • job

        public final int job
        Identifier of the job
      • task

        public final int task
        Index of the task inside the job.
    • Constructor Detail

      • Task

        public Task​(int job,
                    int task)
        Creates a new Task object (job, task).