You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a question about input data of jobshopflex_default.data
(source:docplex-examples/examples/cp/visu/data/jobshopflex_default.data)
If I need to split job. How could I create input data choices? Example Choice 1 :
Job 1 Machine 1 Duration 10 Choice 2 :
Job 1 Machine 1 Duration 5
Job 1 Machine 2 Duration 5
Respectfully,
The text was updated successfully, but these errors were encountered:
# First line contains the number of jobs, and the number of machines.
# The rest of the file consists of one line per job.
# First integer is the number of job steps, followed by the choices for each step.
# For each step, first integer indicates the number of choices, followed
# by the choices expressed with two integers: machine and duration
So for your job 1, you have 1 step with 2 choices: one which would be (1, 5) (as machine 1 duration 5), the second would be (2, 5):
# First line contains the number of jobs, and the number of machines.
# The rest of the file consists of one line per job.
# First integer is the number of job steps, followed by the choices for each step.
# For each step, first integer indicates the number of choices, followed
# by the choices expressed with two integers: machine and duration
So for your job 1, you have 1 step with 2 choices: one which would be (1, 5) (as machine 1 duration 5), the second would be (2, 5):
I have a question about input data of jobshopflex_default.data
(source:docplex-examples/examples/cp/visu/data/jobshopflex_default.data)
If I need to split job. How could I create input data choices?
Example
Choice 1 :
Job 1 Machine 1 Duration 10
Choice 2 :
Job 1 Machine 1 Duration 5
Job 1 Machine 2 Duration 5
Respectfully,
The text was updated successfully, but these errors were encountered: