mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-05 23:38:52 -06:00
relog-web: Make time limit configurable
This commit is contained in:
@@ -11,7 +11,7 @@ function solve(root, filename)
|
||||
ref_file = "$root/$filename"
|
||||
optimizer = optimizer_with_attributes(
|
||||
Cbc.Optimizer,
|
||||
"seconds" => 900,
|
||||
"seconds" => parse(Int, ENV["RELOG_TIME_LIMIT_SEC"]),
|
||||
)
|
||||
ref_solution, ref_model = RELOG.solve(
|
||||
ref_file,
|
||||
|
||||
Reference in New Issue
Block a user