opthub-org / problem-machine-scheduling

0 stars 0 forks source link

`load_val_json`の仕様変更 #20

Closed TakatoKinoshita closed 1 year ago

TakatoKinoshita commented 1 year ago
"""JSON文字列を脱直列化し,データを検証する.

Parameters
----------
json_str : str
    '{
        "schedule": [work1_load, work1_unload, work2_load, ...],
        "timeout": Time limit for SCIP
    }'
n_work : int
    n_works = sum_i work_i
max_date: int , 9
    Maximum date for schedule

Returns
-------
schedule : List[int]
    Schedule (design variables).
timeout : int
    Time limit for SCIP
"""
TakatoKinoshita commented 1 year ago

仕様:

TakatoKinoshita commented 1 year ago

完了