File size: 18,511 Bytes
8c274bd | 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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 | import numpy as np
import os
import json
def generate_random_pfsp_instance(nb_jobs, nb_machines, time_min, time_max):
"""
Generates a random instance of the Permutation Flow Shop Problem (PFSP).
Parameters:
- nb_jobs: Number of jobs (n).
- nb_machines: Number of machines (m).
- time_min: Minimum processing time for any job on any machine.
- time_max: Maximum processing time for any job on any machine.
Returns:
- A 2D list (matrix) of size (nb_jobs x nb_machines) where each entry is a random processing time between time_min and time_max.
"""
return np.random.randint(time_min, time_max + 1, size=(nb_jobs, nb_machines))
def fit_palmer(pfsp_instance: np.ndarray):
"""
Implements Palmer's heuristic for the flowshop scheduling problem. Returns a schedule and its corresponding makespan.
For now I am using an old code that performs palmer by interfacing with it, but it should be refactored to be cleaner and more efficient.
Parameters:
- pfsp_instance: A 2D numpy array where pfsp_instance[i][j] is the processing time of job i on machine j.
Returns:
- A tuple (schedule, makespan) where:
- schedule: A list of job indices representing the order of jobs (e.g., [0, 2, 1]).
- makespan: The total completion time for the given schedule.
"""
# =====================================================================================
class Palmer:
def __init__(self, jobs_list: list):
self.jobs_list = jobs_list
self.nb_jobs = len(jobs_list)
self.nb_machines = len(jobs_list[0])
self.seq_star = None
self.make_span_star = None
# utility function that returns the gantt cumule based on a job execution times and a previous gantt cumule
def cumulate(self, job: list, previous_cumul=None):
res = [0] * len(job)
if previous_cumul == None:
res[0] = job[0]
for i in range(1, len(job)):
res[i] = res[i - 1] + job[i]
else:
res[0] = previous_cumul[0] + job[0]
for i in range(1, len(job)):
res[i] = max(res[i - 1], previous_cumul[i]) + job[i]
return res
# utility function that computes the gantt cumule given only a job sequence (not used in the algorithm due to inneficiency
# dynamic programming with cumulate is used instead ...)
def cumulate_seq(self, seq: list):
cumulated = None
for i in seq:
cumulated = self.cumulate(self.jobs_list[i], cumulated)
return cumulated
# launching the optimization
def optim(self, debug=False):
jobs_weights = []
for i, job in zip(range(self.nb_jobs), self.jobs_list):
weight = 0
for j in range(self.nb_machines):
if debug == True:
print(
f">job {i} mach {j} first term: {(2*(j+1) - 1) - self.nb_machines}"
)
print(f">job {i} mach {j} second term: {job[j]}")
print(
"------------------------------------------------------------------"
)
weight += ((2 * (j + 1) - 1) - self.nb_machines) * job[j]
if debug == True:
print(f"===>> job {i} weight: {weight}")
jobs_weights.append((weight, i))
self.seq_star = [tu[1] for tu in sorted(jobs_weights, reverse=True)]
self.make_span_star = self.cumulate_seq(self.seq_star)[-1]
return (self.seq_star, self.make_span_star)
# =====================================================================================
# Interfacing with the underlying old palmer code
jobs_list = pfsp_instance.tolist()
palmer_schedule, palmer_makespan = Palmer(jobs_list).optim()
# Returning the schedule and makespan as numpy arrays of type int32
return np.array(palmer_schedule, dtype=np.int32), np.int32(palmer_makespan)
def fit_cds(pfsp_instance: np.ndarray):
"""
Implements CDS heuristic for the flowshop scheduling problem. Returns a schedule and its corresponding makespan.
For now I am using an old code that performs cds by interfacing with it, but it should be refactored to be cleaner and more efficient.
Parameters:
- pfsp_instance: A 2D numpy array where pfsp_instance[i][j] is the processing time of job i on machine j.
Returns:
- A tuple (schedule, makespan) where:
- schedule: A list of job indices representing the order of jobs (e.g., [0, 2, 1]).
- makespan: The total completion time for the given schedule.
"""
# =====================================================================================
# Function to cumulate job processing times
def cumulate(job, previous_cumul=None):
res = [0] * len(job)
if previous_cumul is None:
res[0] = job[0]
for i in range(1, len(job)):
res[i] = res[i - 1] + job[i]
else:
res[0] = previous_cumul[0] + job[0]
for i in range(1, len(job)):
res[i] = max(res[i - 1], previous_cumul[i]) + job[i]
return res
# Function to cumulate processing times for a given sequence of jobs
def cumulate_seq(seq, jobs_list):
cumulated = None
for i in seq:
cumulated = cumulate(jobs_list[i], cumulated)
return cumulated
# Function to compute the makespan given a sequence of jobs and the job list
def makespan(sequence, job_list):
return cumulate_seq(sequence, job_list)[-1]
# Function to perform the Johnson's algorithm for the flow shop problem
def johnson_algorithm(matrix):
n = matrix.shape[0]
sequence = []
machines = [[], []]
# Preprocessing to determine the order of jobs
for i in range(n):
if matrix[i][0] < matrix[i][1]: # if time(m1) < time(m2)
machines[0].append((matrix[i][0], i))
else:
machines[1].append((matrix[i][1], i))
# Sorting jobs for each machine
machines[0] = sorted(
machines[0], key=lambda x: x[0]
) # ascending sort for the first machine
machines[1] = sorted(
machines[1], key=lambda x: x[0], reverse=True
) # descending sort for the second machine
# Merging the two sorted lists
merged = machines[0] + machines[1]
# Constructing the optimal sequence
sequence = [index for _, index in merged]
return sequence
# Function that applies Johnson's algorithm and computes the makespan
def johnson(job_matrix, data_matrix):
sequence = johnson_algorithm(job_matrix)
return sequence, makespan(sequence, data_matrix)
# CDS heuristic
def cds_heuristic(matrix):
n = matrix.shape[0]
m = matrix.shape[1]
best_makespan = float("inf")
best_sequences = []
# Step 1: Generate matrices of all possible job lists
for i in range(1, m):
machine_subset_1 = matrix[:, :i].sum(axis=1)
machine_subset_2 = matrix[:, -i:].sum(axis=1)
job_matrix = np.column_stack((machine_subset_1, machine_subset_2))
# Step 2: Apply Johnson's algorithm to the job matrix abd calculate the makespan
sequence, makespan_value = johnson(job_matrix, matrix)
# Step 3: Update the best makespan and corresponding sequences
if makespan_value < best_makespan:
best_makespan = makespan_value
best_sequences = [sequence]
elif makespan_value == best_makespan:
best_sequences.append(sequence)
return best_sequences[0], best_makespan
# =====================================================================================
# Interfacing with the underlying old cds code
cds_schedule, cds_makespan = cds_heuristic(pfsp_instance)
# Returning the schedule and makespan as numpy arrays of type int32
return np.array(cds_schedule, dtype=np.int32), np.int32(cds_makespan)
def fit_neh(pfsp_instance: np.ndarray):
"""
Implements NEH heuristic for the flowshop scheduling problem. Returns a schedule and its corresponding makespan.
For now I am using an old code that performs neh by interfacing with it, but it should be refactored to be cleaner and more efficient.
Parameters:
- pfsp_instance: A 2D numpy array where pfsp_instance[i][j] is the processing time of job i on machine j.
Returns:
- A tuple (schedule, makespan) where:
- schedule: A list of job indices representing the order of jobs (e.g., [0, 2, 1]).
- makespan: The total completion time for the given schedule.
"""
# =====================================================================================
class Inst:
def __init__(
self,
jobs: int,
machines: int,
seed: int,
ub: int,
lb: int,
matrix: list[list[int]],
):
self.jobs = jobs
self.machines = machines
self.seed = seed
self.ub = ub
self.lb = lb
self.matrix = matrix
def __repr__(self) -> str:
return f"Inst(jobs={self.jobs}, machines={self.machines}, seed={self.seed}, ub={self.ub}, lb={self.lb}, matrix={self.matrix})"
class NEH:
def __init__(self, instance: Inst, debug: bool = False):
self.instance = instance
self.debug = debug
def calculate_sj(self, job: int) -> int:
sj = 0
for machine in range(self.instance.machines):
sj += self.instance.matrix[machine][job]
return sj
def sort_jobs(self, reverse: bool = False) -> list[int]:
return sorted(
range(self.instance.jobs),
key=lambda job: self.calculate_sj(job),
reverse=reverse,
)
def emulate(self, jobs: list[int]) -> list[int]:
machines_exec = [0] * self.instance.machines
for job in jobs:
for current_machine in range(self.instance.machines):
# Add jobs execution time to current machine
machines_exec[current_machine] += self.instance.matrix[
current_machine
][job]
# Sync other machines if they are behind current time
for machine in range(current_machine + 1, self.instance.machines):
machines_exec[machine] = max(
machines_exec[current_machine], machines_exec[machine]
)
return machines_exec
def calculate_cmax(self, jobs: list[int]) -> int:
return self.emulate(jobs)[-1]
def get_best_order(self, orders: list[list[int]]) -> tuple[int, list[int]]:
min_cmax = float("inf")
min_order = None
for order in orders:
cmax = self.calculate_cmax(order)
if cmax < min_cmax:
min_cmax = cmax
min_order = order
return min_cmax, min_order
def get_best_position(
self, order: list[int], job: int
) -> tuple[int, list[int]]:
possible_orders: list[list[int]] = []
for pos in range(len(order) + 1):
possible_orders.append(order[:pos] + [job] + order[pos:])
return self.get_best_order(possible_orders)
def __call__(self) -> tuple[int, list[int]]:
if self.instance.jobs < 2:
raise ValueError("Number of jobs must be greater than 2")
sorted_jobs = self.sort_jobs()
current_cmax, current_order = self.get_best_order(
[sorted_jobs[:2], sorted_jobs[:2][::-1]]
)
if self.debug:
print(current_cmax, current_order)
if self.instance.jobs == 2:
return current_cmax, current_order
for job in sorted_jobs[2:]:
current_cmax, current_order = self.get_best_position(current_order, job)
if self.debug:
print(current_cmax, current_order)
return current_cmax, current_order
# =====================================================================================
# Interfacing with the underlying old neh code
neh_instance_jobs = pfsp_instance.shape[0]
neh_instance_machines = pfsp_instance.shape[1]
neh_instance_matrix = pfsp_instance.T.tolist()
neh_instance = Inst(
neh_instance_jobs,
neh_instance_machines,
seed=0,
ub=0,
lb=0,
matrix=neh_instance_matrix,
)
neh_makespan, neh_schedule = NEH(neh_instance)()
# Returning the schedule and makespan as numpy arrays of type int32
return np.array(neh_schedule, dtype=np.int32), np.int32(neh_makespan)
def evaluate_makespan(pfsp_instance, schedule):
"""
Evaluates the makespan (completion time) of a given schedule for a given pfsp_instance.
Parameters:
- pfsp_instance: A list of lists, where pfsp_instance[i][j] is the processing time of job i on machine j.
- schedule: A list/tuple indicating the order of jobs (e.g., [0, 2, 1]).
Returns:
- The makespan (total completion time) for the given schedule.
"""
def cumulate(job: list, previous_cumul=None):
# Calculate the cumulative completion times for a job
res = [0] * len(job)
if previous_cumul == None:
res[0] = job[0]
for i in range(1, len(job)):
res[i] = res[i - 1] + job[i]
else:
res[0] = previous_cumul[0] + job[0]
for i in range(1, len(job)):
res[i] = max(res[i - 1], previous_cumul[i]) + job[i]
return res
def cumulate_seq(pfsp_instance: list, schedule: list):
# Calculates the cumulative time for a sequence of jobs on machines.
cumulated = None
for i in schedule:
cumulated = cumulate(pfsp_instance[i], cumulated)
return cumulated
cumulative = cumulate_seq(pfsp_instance, schedule)
return cumulative[-1]
def create_dataset(
pfsp_instance,
nb_samples,
init_type,
data_folder_location,
data_folder_name=None,
seed=97
):
np.random.seed(seed)
def perturb_schedule(schedule):
perturbed_schedule = schedule[:]
i, j = np.random.choice(perturbed_schedule.shape[0], size=2, replace=False)
perturbed_schedule[[i,j]] = perturbed_schedule[[j,i]]
return perturbed_schedule, evaluate_makespan(pfsp_instance, perturbed_schedule)
# Create the folder if it doesn't exist
if data_folder_name is None: data_folder_name = f"ftdataset_{str(np.datetime64('now'))}"
data_path = os.path.join(data_folder_location, data_folder_name)
os.makedirs(data_path, exist_ok=True)
# Create the np memmap files for schedules and makespans
nb_jobs = pfsp_instance.shape[0]
schedules = np.memmap(os.path.join(data_path,"schedules.bin"), dtype=np.int32, mode='w+', shape=(nb_samples, nb_jobs))
makespans = np.memmap(os.path.join(data_path,"makespans.bin"), dtype=np.int32, mode='w+', shape=(nb_samples,))
# Save the pfsp instance as a numpy file
np.save(os.path.join(data_path,"pfsp_instance.npy"), pfsp_instance)
# Create a metadata dictionary and save it as a json file
metadata_dict = {
"nb_samples": nb_samples,
"nb_jobs": nb_jobs,
"nb_machines": pfsp_instance.shape[1],
"init_type": init_type,
"data_path": data_path,
"seed": seed,
"date_time": str(np.datetime64('now'))
}
with open(os.path.join(data_path,"metadata.json"), "w") as f:
json.dump(metadata_dict, f, indent=4)
if init_type == "cds":
cds_schedule, cds_makespan = fit_cds(pfsp_instance)
schedules[0] = cds_schedule
makespans[0] = cds_makespan
for i in range(1, nb_samples):
schedules[i], makespans[i] = perturb_schedule(cds_schedule)
elif init_type == "palmer":
palmer_schedule, palmer_makespan = fit_palmer(pfsp_instance)
schedules[0] = palmer_schedule
makespans[0] = palmer_makespan
for i in range(1, nb_samples):
schedules[i], makespans[i] = perturb_schedule(palmer_schedule)
elif init_type == "neh":
neh_schedule, neh_makespan = fit_neh(pfsp_instance)
schedules[0] = neh_schedule
makespans[0] = neh_makespan
for i in range(1, nb_samples):
schedules[i], makespans[i] = perturb_schedule(neh_schedule)
elif init_type == "heuristics":
cds_schedule, cds_makespan = fit_cds(pfsp_instance)
schedules[0], makespans[0] = cds_schedule, cds_makespan
cds_size = nb_samples // 3
for i in range(1, cds_size):
print("cds", i)
schedules[i], makespans[i] = perturb_schedule(cds_schedule)
i+=1
palmer_schedule, palmer_makespan = fit_palmer(pfsp_instance)
schedules[i], makespans[i] = palmer_schedule, palmer_makespan
palmer_size = nb_samples // 3
for i in range(i+1, i+palmer_size):
print("palmer", i)
schedules[i], makespans[i] = perturb_schedule(palmer_schedule)
i+=1
neh_schedule, neh_makespan = fit_neh(pfsp_instance)
schedules[i], makespans[i] = neh_schedule, neh_makespan
neh_size = nb_samples - cds_size - palmer_size
for i in range(i+1, i+neh_size):
print("neh", i)
schedules[i], makespans[i] = perturb_schedule(neh_schedule)
elif init_type == "random":
for i in range(nb_samples):
schedule = np.random.permutation(pfsp_instance.shape[0])
makespan = evaluate_makespan(pfsp_instance, schedule)
schedules[i] = schedule
makespans[i] = makespan
else:
raise ValueError("Invalid initialization type")
schedules.flush()
makespans.flush()
return schedules, makespans |