File size: 577 Bytes
6179bb6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from create_dataset import create_dataset

params = [
    {
        "testing": False,
        "nb_jobs": nb_jobs,
        "nb_machines": nb_machines,
        "time_min": 0,
        "time_max": 1,
        "nb_samples": 0,
        "init_type": "exhaustive",
        "output_dir": f"../datasets/exhaustive_{nb_jobs}_{nb_machines}",
        "seed": 97,
        "normalize_makespans": True,
        "pfsp_instance": "",
        "autoname_output_dir": False,
    }
    for nb_jobs in range(7, 11)
    for nb_machines in range(2, 7)
]

for param in params:
    create_dataset(**param)