-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
67 lines (67 loc) · 1.34 KB
/
data.json
File metadata and controls
67 lines (67 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"machines": [
{
"machine_id": 0,
"unavailable_periods": []
},
{
"machine_id": 1,
"unavailable_periods": [
[7, 12]
]
},
{
"machine_id": 2,
"unavailable_periods": []
}
],
"jobs": [
{
"job_id": 0,
"due_date": 15,
"priority": 2,
"operations": [
{"machine_id": 0, "processing_time": 3},
{"machine_id": 1, "processing_time": 2},
{"machine_id": 2, "processing_time": 2}
]
},
{
"job_id": 1,
"due_date": 20,
"priority": 3,
"operations": [
{"machine_id": 0, "processing_time": 2},
{"machine_id": 2, "processing_time": 1},
{"machine_id": 1, "processing_time": 4}
]
},
{
"job_id": 2,
"due_date": 25,
"priority": 2,
"operations": [
{"machine_id": 1, "processing_time": 4},
{"machine_id": 0, "processing_time": 3}
]
},
{
"job_id": 3,
"due_date": 30,
"priority": 1,
"operations": [
{"machine_id": 2, "processing_time": 8},
{"machine_id": 0, "processing_time": 5}
]
},
{
"job_id": 4,
"due_date": 10,
"priority": 2,
"operations": [
{"machine_id": 1, "processing_time": 2},
{"machine_id": 2, "processing_time": 2}
]
}
]
}