common.smk: make solver_threads also look for capitalised 'Threads'
This commit is contained in:
parent
877ca3eb44
commit
b8b92ace64
@ -81,7 +81,8 @@ def config_provider(*keys, default=None):
|
|||||||
def solver_threads(w):
|
def solver_threads(w):
|
||||||
solver_options = config_provider("solving", "solver_options")(w)
|
solver_options = config_provider("solving", "solver_options")(w)
|
||||||
option_set = config_provider("solving", "solver", "options")(w)
|
option_set = config_provider("solving", "solver", "options")(w)
|
||||||
threads = solver_options[option_set].get("threads", 4)
|
solver_option_set = solver_options[option_set]
|
||||||
|
threads = solver_option_set.get("threads") or solver_option_set.get("Threads") or 4
|
||||||
return threads
|
return threads
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user