IGJSP 1.1.7__tar.gz → 1.1.8__tar.gz
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-1.1.7 → igjsp-1.1.8}/PKG-INFO +1 -1
- {igjsp-1.1.7 → igjsp-1.1.8}/pyproject.toml +1 -1
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/generador.py +3 -3
- {igjsp-1.1.7 → igjsp-1.1.8}/.gitignore +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/LICENSE +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/README.md +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Models/RD/JSP0.mzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Models/RD/JSP1.mzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Models/RD/JSP2.mzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/FJSP/type0.dzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/FJSP/type1.dzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/FJSP/type2.dzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/JSP/type0.dzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/JSP/type1.dzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/JSP/type2.dzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/JSP0.mzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/JSP1.mzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/Minizinc/Types/RD/JSP2.mzn +0 -0
- {igjsp-1.1.7 → igjsp-1.1.8}/src/IGJSP/main.py +0 -0
|
@@ -1154,7 +1154,7 @@ class Generator:
|
|
|
1154
1154
|
orden_aux.append([np.random.choice(range(machines), machines, replace=False) for job in range(jobs)])
|
|
1155
1155
|
|
|
1156
1156
|
orden_aux = np.array(orden_aux)
|
|
1157
|
-
|
|
1157
|
+
instances = []
|
|
1158
1158
|
for index in range(1, size + 1):
|
|
1159
1159
|
|
|
1160
1160
|
jsp_instance.fill_random_values(speed = speed, rddd = ReleaseDateDueDate, distribution = distribution, seed = seed,tpm = tpm_aux[index-1])
|
|
@@ -1190,5 +1190,5 @@ class Generator:
|
|
|
1190
1190
|
os.remove(pkl_path)
|
|
1191
1191
|
if self.taillard:
|
|
1192
1192
|
jsp_instance.saveTaillardStandardFile(f"{problem_path}/TAILLARD/" + jm_path.split("/")[0] + f"_{j}x{m}_{i}.txt")
|
|
1193
|
-
|
|
1194
|
-
return
|
|
1193
|
+
instances.append(jsp_instance)
|
|
1194
|
+
return instances
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|