IGJSP 1.1.8__tar.gz → 1.1.9__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.8 → igjsp-1.1.9}/PKG-INFO +1 -1
- {igjsp-1.1.8 → igjsp-1.1.9}/pyproject.toml +1 -1
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/generador.py +1 -4
- {igjsp-1.1.8 → igjsp-1.1.9}/.gitignore +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/LICENSE +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/README.md +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Models/RD/JSP0.mzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Models/RD/JSP1.mzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Models/RD/JSP2.mzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/FJSP/type0.dzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/FJSP/type1.dzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/FJSP/type2.dzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/JSP/type0.dzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/JSP/type1.dzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/JSP/type2.dzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/JSP0.mzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/JSP1.mzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/Minizinc/Types/RD/JSP2.mzn +0 -0
- {igjsp-1.1.8 → igjsp-1.1.9}/src/IGJSP/main.py +0 -0
|
@@ -161,9 +161,6 @@ class JSP:
|
|
|
161
161
|
# tpm = expon(loc=10, scale=20).rvs(self.numMchs)
|
|
162
162
|
energyPer, timePer = self._particionate_speed_space(speed)
|
|
163
163
|
self._generate_standar_operation_cost(distribution,tpm)
|
|
164
|
-
|
|
165
|
-
energyPer, timePer = self._particionate_speed_space(speed)
|
|
166
|
-
self._generate_standar_operation_cost(distribution)
|
|
167
164
|
|
|
168
165
|
self.ProcessingTime = np.zeros((self.numJobs, self.numMchs, self.speed), dtype=int)
|
|
169
166
|
self.EnergyConsumption = np.zeros((self.numJobs, self.numMchs, self.speed), dtype=int)
|
|
@@ -1190,5 +1187,5 @@ class Generator:
|
|
|
1190
1187
|
os.remove(pkl_path)
|
|
1191
1188
|
if self.taillard:
|
|
1192
1189
|
jsp_instance.saveTaillardStandardFile(f"{problem_path}/TAILLARD/" + jm_path.split("/")[0] + f"_{j}x{m}_{i}.txt")
|
|
1193
|
-
instances.append(jsp_instance)
|
|
1190
|
+
instances.append(copy.deepcopy(jsp_instance))
|
|
1194
1191
|
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
|