IGJSP 0.0.3__py3-none-any.whl → 0.0.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
IGJSP/main.py CHANGED
@@ -17,13 +17,19 @@ try:
17
17
  # Número de Máquinas
18
18
  parser.add_argument('-M','--machines', type=json.loads, default='[4]')
19
19
  # Semilla
20
- parser.add_argument('-s','--seeds', type= json.loads, default='[0]')
20
+ parser.add_argument('-s','--seeds', type= json.loads, default=1)
21
21
  # Tipo de problema
22
22
  # 1 - JSP, 2 - FlowJSP, 3 - FlexibleJSP, 4 - OpenJSP
23
23
  # parser.add_argument('-T','--type', type=int, default=1)
24
24
  # Niveles de dificultad
25
25
  # Speed Scaling
26
26
  parser.add_argument('-S', '--speed-scaling', type=int, default=1)
27
+ # Tiempo estandar de procesamiento de una máquina
28
+ parser.add_argument('-mpt', '--machine-processing-time', dest='mpt', type=json.loads, default=[])
29
+ # Energy
30
+ parser.add_argument('-E', '--energy', type=int, default=0)
31
+
32
+ parser.add_argument('-O', '--order', type=json.loads, default='[]')
27
33
 
28
34
  # Release and Due date
29
35
  # 0 -> Tiempo infinito
@@ -40,7 +46,6 @@ try:
40
46
  parser.add_argument('-Q', '--quantity', type=int, default=1)
41
47
  # Distribution
42
48
  parser.add_argument('-D','--distribution', type=str, default="normal")
43
-
44
49
  # JSON save
45
50
  parser.add_argument('-j','--json', type=bool, default=False)
46
51
  # DZN save
@@ -54,17 +59,22 @@ try:
54
59
  start = time.time()
55
60
  for j in tqdm(args.jobs,desc='Jobs',leave=False):
56
61
  for m in tqdm(args.machines,desc='Machines',leave=False):
57
-
58
- generator = Generator(json = args.json, dzn = args.dzn, taillard = args.taillard)
59
- if len(args.seeds) < args.quantity:
60
- # args.seeds = args.seeds + list(np.zeros(args.quantity - len(args.seeds),dtype=np.int64))
61
- p_s = np.linspace(0, 100, num=100,dtype=np.int64)
62
- for s in args.seeds:
63
- p_s = p_s[p_s!=s]
64
- args.seeds = args.seeds+ list(p_s[:args.quantity-len(args.seeds)])
65
62
  for i in trange(args.quantity,desc='Quantity',leave=False):
66
- generator.savepath = args.path+"/instancesGenerated_"+str(i)
67
- generator.generate_new_instance(jobs=j, machines=m,ReleaseDateDueDate =np.array(args.release_due),speed = args.speed_scaling,distribution = args.distribution, seed = args.seeds[i])
63
+ jm_path = str(j )+"_"+str(m)+"/"
64
+ jsp = JSP(jobs=j, machines=m,ProcessingTime=args.mpt,EnergyConsumption=args.energy,ReleaseDateDueDate=args.release_due,Orden=args.order)
65
+ jsp.fill_random_values(speed=args.speed_scaling, rddd=args.release_due, distribution=args.distribution, seed=args.seeds)
66
+ if args.json:
67
+ jsp.saveJsonFile(f"{args.path}/"+jm_path+f"{j}x{m}_{i}.json")
68
+ pass
69
+ if args.dzn:
70
+ jsp.savePythonFile(f"{args.path}/"+jm_path+str(j )+"_"+str(m)+".pkl")
71
+ jsp.saveDznFile(f"{args.path}/"+jm_path+str(j )+"_"+str(m)+".pkl",f"{args.path}/"+jm_path+f"{j}x{m}_{i}.dzn")
72
+ os.remove(f"{args.path}/"+jm_path+str(j )+"_"+str(m)+".pkl")
73
+ if args.taillard:
74
+ jsp.saveTaillardStandardFile(f"{args.path}/"+jm_path+f"{j}x{m}_{i}.txt")
75
+
76
+
77
+
68
78
 
69
79
  except Exception as e:
70
80
  raise
@@ -0,0 +1,185 @@
1
+ Metadata-Version: 2.4
2
+ Name: IGJSP
3
+ Version: 0.0.4
4
+ Summary: Instance generator for JSP
5
+ Project-URL: Homepage, https://gps.blogs.upv.es/
6
+ Author-email: GPS-UPV <gps@dsic.upv.es>
7
+ License: MIT License
8
+
9
+ Copyright (c) 2025 GPS
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+ License-File: LICENSE
29
+ Classifier: License :: OSI Approved :: MIT License
30
+ Classifier: Operating System :: OS Independent
31
+ Classifier: Programming Language :: Python :: 3
32
+ Requires-Python: >=3.9
33
+ Requires-Dist: numpy
34
+ Requires-Dist: scipy
35
+ Requires-Dist: tqdm
36
+ Description-Content-Type: text/markdown
37
+
38
+ # JSP Generator
39
+
40
+ ## Description
41
+ Benchmark generator for the Job Shop Problem (BG-JSP)
42
+
43
+ ## Parameters
44
+
45
+ Parameters available for the generation of problem instances:
46
+
47
+ 1. **Jobs:`--jobs (-J)`**
48
+ - **Description**: Number of jobs that will have the problem generated.
49
+ - **Possible values**: List of integers. If you put more than one value in the list, all possible combinations will be made with the available machines.
50
+ - **Example of possible values**: `[3]`, `[4, 5]`.
51
+ - **Default value**: `[10]`
52
+
53
+ 2. **Machines:`--machines (-M)`**
54
+ - **Description**: Number of machines that will have the problem generated.
55
+ - **Possible values**: List of integers. If you put more than one value in the list, all possible combinations will be made with the available jobs.
56
+ - **Example of possible values**: `[6]`, `[2, 5]`.
57
+ - **Default value**: `[4]`
58
+
59
+ 3. **Seed:`--seed (-s)`**
60
+ - **Description**: Base number for data generation.
61
+ - **Possible values**: Integer value.
62
+ - **Example of possible values**: `84`, `32`
63
+ - **Default value**: `1`
64
+
65
+ 4. **Speed Scaling:`--speed-scaling (-S)`**
66
+ - **Description**: Number of speeds that will be available to perform each task.
67
+ - **Possible values**: Integer value.
68
+ - **Example of possible values**: `3`, `5`
69
+ - **Default value**: `1`
70
+
71
+ 5. **Machine Processing Time:`--machine-processing-time (-mpt)`**
72
+ - **Description**: Base consumption for a machine in stand-by.
73
+ - **Possible values**: List of floats that will have the same number of elements as available machines.
74
+ - **Example of possible values**: `[1.2]`, `[1.2, 3.4]`
75
+ - **Default value**: `[]`
76
+
77
+ 6. **Release and Due Date:`--release-due (-RDDD)`**
78
+ - **Descripción**: Establish that each task has an instant of release and an instant of completion limit.
79
+ - **Possible values**:
80
+ - `0`: Neither the works and operations of each of them will have an instant of release or time limit for completion.
81
+ - `1`: The work will have instant of release and instant of completion limit.
82
+ - `2`: The operations of each job will have a release time and a limiting end time.
83
+ - **Example of possible values**: `1`, `2`
84
+ - **Default value**: `0`
85
+
86
+ 7. **Path:`--path (-P)`**
87
+ - **Description**: Path where the problem instance file will be generated.
88
+ - **Possible values**: String.
89
+ - **Example of possible values**: `./problems`, `./instances`
90
+ - **Default value**: `./output`
91
+
92
+ 8. **Quantity:`--quantity (-Q)`**
93
+ - **Description**: Number of problem instances to be generated.
94
+ - **Possible values**: Integer value.
95
+ - **Example of possible values**: `2`, `5`
96
+ - **Default value**: `1`
97
+
98
+ 9. **Distribution:`--distribution (-D)`**
99
+ - **Description**: Type of distribution to be followed for data generation.
100
+ - **Possible values**: You can only set one of the following values: `uniform` `normal` `exponential`
101
+ - **Example of possible values**: `uniform`, `exponential`
102
+ - **Default value**: `normal`
103
+
104
+ ## Example of JSON generated
105
+
106
+ This JSON shows how the data generated from an JSP problem with 2 machines and 2 jobs will look like. For this generation we have used the following parameters:
107
+ `-J [2] -M [2] -s 155632 -S 2 -mpt [50,60] -RDDD 1 -P ./problems -D exponential`
108
+
109
+ ```json
110
+ {
111
+ "nbJobs": [
112
+ 0,
113
+ 1
114
+ ],
115
+ "nbMchs": [
116
+ 0,
117
+ 1
118
+ ],
119
+ "timeEnergy": [
120
+ {
121
+ "jobId": 0,
122
+ "operations": {
123
+ "0": {
124
+ "speed-scaling": [
125
+ {
126
+ "procTime": 12,
127
+ "energyCons": 88
128
+ },
129
+ {
130
+ "procTime": 2,
131
+ "energyCons": 98
132
+ }
133
+ ]
134
+ },
135
+ "1": {
136
+ "speed-scaling": [
137
+ {
138
+ "procTime": 99,
139
+ "energyCons": 37
140
+ },
141
+ {
142
+ "procTime": 32,
143
+ "energyCons": 72
144
+ }
145
+ ]
146
+ }
147
+ },
148
+ "release-date": 60,
149
+ "due-date": 281
150
+ },
151
+ {
152
+ "jobId": 1,
153
+ "operations": {
154
+ "1": {
155
+ "speed-scaling": [
156
+ {
157
+ "procTime": 144,
158
+ "energyCons": 23
159
+ },
160
+ {
161
+ "procTime": 23,
162
+ "energyCons": 79
163
+ }
164
+ ]
165
+ },
166
+ "0": {
167
+ "speed-scaling": [
168
+ {
169
+ "procTime": 6,
170
+ "energyCons": 94
171
+ },
172
+ {
173
+ "procTime": 2,
174
+ "energyCons": 98
175
+ }
176
+ ]
177
+ }
178
+ },
179
+ "release-date": 40,
180
+ "due-date": 317
181
+ }
182
+ ],
183
+ "drDate": []
184
+ }
185
+ ```
@@ -0,0 +1,41 @@
1
+ IGJSP/generador.py,sha256=FgzzIBPq7P3q1s2Wn94jVqs-tA_wZncW6zwDeWyLZGo,21404
2
+ IGJSP/main.py,sha256=Lx5iY_5JzUSObyPD8qHmeFYC7e2ltPNO-NZXUmu5eUk,3255
3
+ IGJSP/Minizinc/Models/RD/JSP0.mzn,sha256=cfN_E3RQ6nBulGfaOOYTd-zAgA5SI6E2saDlYtKCflg,2282
4
+ IGJSP/Minizinc/Models/RD/JSP1.mzn,sha256=5B8cyw2WyKR8yEL1fFd0TaCAVhjPoxEJRJDPPEjJGEk,2840
5
+ IGJSP/Minizinc/Models/RD/JSP2.mzn,sha256=ATqpg-Ow_VzjQJ_hZSSXiTXmwmqNqFsq81TZgcnjTks,2941
6
+ IGJSP/Minizinc/Types/RD/JSP0.mzn,sha256=cfN_E3RQ6nBulGfaOOYTd-zAgA5SI6E2saDlYtKCflg,2282
7
+ IGJSP/Minizinc/Types/RD/JSP1.mzn,sha256=5B8cyw2WyKR8yEL1fFd0TaCAVhjPoxEJRJDPPEjJGEk,2840
8
+ IGJSP/Minizinc/Types/RD/JSP2.mzn,sha256=ATqpg-Ow_VzjQJ_hZSSXiTXmwmqNqFsq81TZgcnjTks,2941
9
+ IGJSP/Minizinc/Types/RD/type0.dzn,sha256=alo54TrPd2svp-YeOq8rNhb42Aj5w4N1y1WYRxZ-aWM,225
10
+ IGJSP/Minizinc/Types/RD/type1.dzn,sha256=r3f1uOoDnscjpXHbpvOWPGhGN0tmwkJ3NYIRP-NGk5M,298
11
+ IGJSP/Minizinc/Types/RD/type2.dzn,sha256=ddJxLqR_WlUpycHhA_QulxiTx3o9neIzNESEt59VUx0,344
12
+ IGJSP/generador/10_4/10_4.pkl,sha256=rKsm2FvdfFq3mNdX4N9Y2c0uXDfQnZF9R3mvwGQuoec,2573
13
+ IGJSP/generador/10_4/10x4_0.json,sha256=vqM4iqP1FMfFul-AE54O4CrHoB2HjiyZL8EOcGWLGMI,11356
14
+ IGJSP/generador/10_4/10x4_0.txt,sha256=tiXwi1yidXZ38Jz6ys41nCe8IM1HMDTQFLa0MGtqjlM,485
15
+ IGJSP/generador/10_4/10x4_0.dzn/10x4_0.dzn,sha256=2VEB7tyX_MbmAMc1iRVxM9U108LjTC6RRDMlMRppksE,2613
16
+ IGJSP/generador/10_4/10x4_0.dzn/10x4_0.dzn-0-1.dzn,sha256=6-3yuKnG5yU4a9c1zU21w-U78wXWRlQceUZfzmR2AC0,304
17
+ IGJSP/generador/2_1/2_1.pkl,sha256=ylYuc9EMzm2fNf1JceNn5wPum_alQqkhym1tQYrhKck,835
18
+ IGJSP/generador/2_1/2x1_0.json,sha256=gHiU_pf_meIepaN03Ydo-K3b31q_EJh9ZIgb7iiHoqs,916
19
+ IGJSP/generador/2_1/2x1_0.txt,sha256=Yc6ooOTkTs4CBh36xHuXIEXGE-hWXNZ8Pk5cA-iXWsY,132
20
+ IGJSP/generador/2_1/2x1_0.dzn/2x1_0.dzn,sha256=FKbwpFqVNhCrafejrtzPM-rxHGYT7P3r0tNH8P_F3Jk,875
21
+ IGJSP/generador/2_1/2x1_0.dzn/2x1_0.dzn-0-1.dzn,sha256=OLauSKXDQudPPSJCuIC-v8mITjndG6v_wXooSvczCfs,189
22
+ IGJSP/generador/2_2/2x2_0.json,sha256=Ghq4lno_fj-JFsRUaDLKGHyLYWbUGpo3MmdKre13TLk,1432
23
+ IGJSP/generador/2_2/2x2_0.txt,sha256=Eo8pCSYr2bPnYYLlE5wPiyD_1l3YjAEaNtoZ8nEl21I,148
24
+ IGJSP/generador/2_6/2x6_0.json,sha256=s7K0TQe9-Le85epMZj8XG0KScolGDvrgWR8z4cOUJ3k,3498
25
+ IGJSP/generador/2_6/2x6_0.txt,sha256=Bhoe0rxib4kvdnBMCHLF3WcUpfoHRiAbyQ8Rp6_IqpY,212
26
+ IGJSP/generador/3_1/3x1_0.json,sha256=wWuBiwPvThY-KA8Nycmom_MMgsftKOQyVhWbVkozYc4,1271
27
+ IGJSP/generador/3_1/3x1_0.txt,sha256=aJhg9pHM4PqiULep1A3JfwJbh4FIlwlLw4arh82V2HA,146
28
+ IGJSP/generador/3_2/3x2_0.json,sha256=tt1hPxLVyUdXYY2YfJ6kqk3r9N2qLU8GiO8nAuJ4rRo,2041
29
+ IGJSP/generador/3_2/3x2_0.txt,sha256=5bClvo0jib5OeDfFoKOYSOc3ZCeCvjpVAt3wuricaKI,170
30
+ IGJSP/generador/3_6/3x6_0.json,sha256=p4xv0I_YJ2uBl0W8yogN2pD5LFOzYIIwxrjK5FO0ivA,5114
31
+ IGJSP/generador/3_6/3x6_0.txt,sha256=yoTf4Bhbc1npI0tgSrDv6j6NHFqFYZCq_bzQL8rvtcs,266
32
+ IGJSP/generador/5_1/5x1_0.json,sha256=SKBkNzzDz9LeKv3QBLrE8lLZT1O-agSY18J8DzocojM,1982
33
+ IGJSP/generador/5_1/5x1_0.txt,sha256=9u3EXjO2fyAvTFw2tgRWEZAfO4Xw4MBibTerPEMZC0g,174
34
+ IGJSP/generador/5_2/5x2_0.json,sha256=ZtOarwT6rB4UcsiReFega7Itpci5zkZOyJjMOGpndiw,3255
35
+ IGJSP/generador/5_2/5x2_0.txt,sha256=cfVvlYVKxuUoGlqjPErXN5dUFkBwY6V03QfeP_XjlS0,214
36
+ IGJSP/generador/5_6/5x6_0.json,sha256=1qLZCw78Ccsef6VbiorGAEt9OvQBPyuoLyCmQ5_TRGg,8345
37
+ IGJSP/generador/5_6/5x6_0.txt,sha256=oo9g1bqLi4gir1A1iqRC-0SyscumZYwFbnaFJuZ4fqE,374
38
+ igjsp-0.0.4.dist-info/METADATA,sha256=fTKuODqaDaDzdlxFELsEhBYrlC1lIxvhgdvQghdWPV4,6922
39
+ igjsp-0.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
40
+ igjsp-0.0.4.dist-info/licenses/LICENSE,sha256=UtY-FXLhxMx_jlHRkzkBP0WYzBZXLunSqc0ILIfc4Uw,1079
41
+ igjsp-0.0.4.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.25.0
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 GPS
3
+ Copyright (c) 2025 GPS
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,216 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: IGJSP
3
- Version: 0.0.3
4
- Summary: Instance generator for JSP
5
- Project-URL: Homepage, https://gps.blogs.upv.es/
6
- Author-email: GPS-UPV <gps@dsic.upv.es>
7
- License-File: LICENSE
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Classifier: Programming Language :: Python :: 3
11
- Requires-Python: >=3.9
12
- Requires-Dist: numpy
13
- Requires-Dist: scipy
14
- Requires-Dist: tqdm
15
- Description-Content-Type: text/markdown
16
-
17
- # JSP Generator
18
-
19
- ## Description
20
- Benchmark generator for the Job Shop Problem (BG-JSP)
21
-
22
- ## Generating a JSP problem instance
23
-
24
- To generate an instance of the problem we will use the Generator class, located at the generador module.
25
- To do this, we initialize the generator, giving it the following parameters:
26
-
27
- 1. **JSON:`json`**
28
- - **Description**: Parameter that indicates if the generated instance will be stored in JSON format.
29
- - **Possible values**: Boolean value. Only can get the values True or False.
30
- - **Example of possible values**: `True`, `False`
31
- - **Default value**: `False`
32
-
33
- 2. **DZN:`dzn`**
34
- - **Description**: Parameter that indicates if the generated instance will be stored in DZN format.
35
- - **Possible values**: Boolean value. Only can get the values True or False.
36
- - **Example of possible values**: `True`, `False`
37
- - **Default value**: `False`
38
-
39
- 3. **Taillard:`taillard`**
40
- - **Description**: Parameter that indicates if the generated instance will be stored in taillard format.
41
- - **Possible values**: Boolean value. Only can get the values True or False.
42
- - **Example of possible values**: `True`, `False`
43
- - **Default value**: `False`
44
-
45
- 4. **Save Path:`savepath`**
46
- - **Description**: Path where the problem instance file will be generated.
47
- - **Possible values**: String.
48
- - **Example of possible values**: `./problems`, `./instances`
49
- - **Default value**: `./output`
50
-
51
-
52
- Once the generator has been initialized we proceed to generate different instances of the JSP problem with different values for this initialization, for that we use the following function, using the following parameters to customize the generated instances:
53
-
54
- 1. **Jobs:`jobs`**
55
- - **Description**: Number of jobs that will have the problem generated.
56
- - **Possible values**: Integer value.
57
- - **Example of possible values**: `3`, `4`.
58
- - **Default value**: `10`
59
-
60
- 2. **Machines:`machines`**
61
- - **Description**: Number of machines that will have the problem generated.
62
- - **Possible values**: Integer value.
63
- - **Example of possible values**: `6`, `2`.
64
- - **Default value**: `4`
65
-
66
- 3. **Release and Due Date:`ReleaseDateDueDate`**
67
- - **Descripción**: Establish that each task has an instant of release and an instant of completion limit.
68
- - **Possible values**:
69
- - `0`: Neither the works and operations of each of them will have an instant of release or time limit for completion.
70
- - `1`: The work will have instant of release and instant of completion limit.
71
- - `2`: The operations of each job will have a release time and a limiting end time.
72
- - **Example of possible values**: `1`, `2`
73
- - **Default value**: `0`
74
-
75
- 4. **Speeds:`speed`**
76
- - **Description**: Number of speeds that will be available to perform each task.
77
- - **Possible values**: Integer value.
78
- - **Example of possible values**: `3`, `5`
79
- - **Default value**: `1`
80
-
81
- 5. **Distribution:`distribution`**
82
- - **Description**: Type of distribution to be followed for data generation.
83
- - **Possible values**: You can only set one of the following values: `uniform` `normal` `exponential`
84
- - **Example of possible values**: `uniform`, `exponential`
85
- - **Default value**: `normal`
86
-
87
- 6. **Seed:`seed`**
88
- - **Description**: Base number for data generation.
89
- - **Possible values**: Integer value.
90
- - **Example of possible values**: `84`, `32`
91
- - **Default value**: `1`
92
-
93
- ## Example of JSON generated
94
-
95
- This JSON shows how the data generated from an JSP problem with 2 machines and 4 jobs will look like. For this generation we have the following code:
96
- ``` python
97
- from IGJSP.generador import Generator
98
- generator = Generator(json=True,savepath="output")
99
- generator.generate_new_instance(jobs=4,machines=2,ReleaseDateDueDate=2,distribution="exponential",seed=53)
100
- ```
101
-
102
- ```json
103
- {
104
- "nbJobs": [
105
- 0,
106
- 1
107
- ],
108
- "nbMchs": [
109
- 0,
110
- 1,
111
- 2,
112
- 3
113
- ],
114
- "speed": 1,
115
- "timeEnergy": [
116
- {
117
- "jobId": 0,
118
- "operations": {
119
- "0": {
120
- "speed-scaling": [
121
- {
122
- "procTime": 8,
123
- "energyCons": 92
124
- }
125
- ],
126
- "release-date": 30,
127
- "due-date": 41
128
- },
129
- "2": {
130
- "speed-scaling": [
131
- {
132
- "procTime": 17,
133
- "energyCons": 84
134
- }
135
- ],
136
- "release-date": 41,
137
- "due-date": 77
138
- },
139
- "3": {
140
- "speed-scaling": [
141
- {
142
- "procTime": 3,
143
- "energyCons": 97
144
- }
145
- ],
146
- "release-date": 77,
147
- "due-date": 80
148
- },
149
- "1": {
150
- "speed-scaling": [
151
- {
152
- "procTime": 7,
153
- "energyCons": 93
154
- }
155
- ],
156
- "release-date": 80,
157
- "due-date": 88
158
- }
159
- },
160
- "release-date": 30,
161
- "due-date": 88
162
- },
163
- {
164
- "jobId": 1,
165
- "operations": {
166
- "1": {
167
- "speed-scaling": [
168
- {
169
- "procTime": 4,
170
- "energyCons": 96
171
- }
172
- ],
173
- "release-date": 0,
174
- "due-date": 5
175
- },
176
- "3": {
177
- "speed-scaling": [
178
- {
179
- "procTime": 3,
180
- "energyCons": 97
181
- }
182
- ],
183
- "release-date": 5,
184
- "due-date": 9
185
- },
186
- "2": {
187
- "speed-scaling": [
188
- {
189
- "procTime": 1,
190
- "energyCons": 99
191
- }
192
- ],
193
- "release-date": 9,
194
- "due-date": 10
195
- },
196
- "0": {
197
- "speed-scaling": [
198
- {
199
- "procTime": 6,
200
- "energyCons": 94
201
- }
202
- ],
203
- "release-date": 10,
204
- "due-date": 17
205
- }
206
- },
207
- "release-date": 0,
208
- "due-date": 17
209
- }
210
- ],
211
- "minMakespan": 35,
212
- "minEnergy": 752,
213
- "maxMinMakespan": 14,
214
- "maxMinEnergy": 0
215
- }
216
- ```
@@ -1,15 +0,0 @@
1
- IGJSP/generador.py,sha256=U4xy63dWzS9rp_npQJbmMXirVRZxWluSeE4cth36U1A,22128
2
- IGJSP/main.py,sha256=qnpAdI9Nymfbb2t674EHKCZr1vG80tGyVT5RKMiGvZM,2727
3
- IGJSP/Minizinc/Models/RD/JSP0.mzn,sha256=cfN_E3RQ6nBulGfaOOYTd-zAgA5SI6E2saDlYtKCflg,2282
4
- IGJSP/Minizinc/Models/RD/JSP1.mzn,sha256=5B8cyw2WyKR8yEL1fFd0TaCAVhjPoxEJRJDPPEjJGEk,2840
5
- IGJSP/Minizinc/Models/RD/JSP2.mzn,sha256=ATqpg-Ow_VzjQJ_hZSSXiTXmwmqNqFsq81TZgcnjTks,2941
6
- IGJSP/Minizinc/Types/RD/JSP0.mzn,sha256=cfN_E3RQ6nBulGfaOOYTd-zAgA5SI6E2saDlYtKCflg,2282
7
- IGJSP/Minizinc/Types/RD/JSP1.mzn,sha256=5B8cyw2WyKR8yEL1fFd0TaCAVhjPoxEJRJDPPEjJGEk,2840
8
- IGJSP/Minizinc/Types/RD/JSP2.mzn,sha256=ATqpg-Ow_VzjQJ_hZSSXiTXmwmqNqFsq81TZgcnjTks,2941
9
- IGJSP/Minizinc/Types/RD/type0.dzn,sha256=alo54TrPd2svp-YeOq8rNhb42Aj5w4N1y1WYRxZ-aWM,225
10
- IGJSP/Minizinc/Types/RD/type1.dzn,sha256=r3f1uOoDnscjpXHbpvOWPGhGN0tmwkJ3NYIRP-NGk5M,298
11
- IGJSP/Minizinc/Types/RD/type2.dzn,sha256=ddJxLqR_WlUpycHhA_QulxiTx3o9neIzNESEt59VUx0,344
12
- igjsp-0.0.3.dist-info/METADATA,sha256=XXVu9TscGqrQMBpKUspi3iwjHGAAhozcimkoCmhU-ys,7369
13
- igjsp-0.0.3.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
14
- igjsp-0.0.3.dist-info/licenses/LICENSE,sha256=JJvw-24-Kyyqu80L6pZ5UImXjuvta4gcDwypMgItrro,1079
15
- igjsp-0.0.3.dist-info/RECORD,,