Closed rkaminsk closed 1 year ago
I went with:
--opt-heuristic=<list> : Enable optimization heuristic
<list>: {sign|model}
sign : Prefer signs minimizing objective
model: Assume literals minimizing objective after each model
Does this work for you?
It is also a bit unclear how to pass an empty list. It seems like the numeric 0 is possible but not the empty string.
You can pass all supported "off" values (0
, "off"
, "no"
, "false"
) where a <list>
is expected. I'd like to keep the empty string reserved for flag-like options.
I went with:
--opt-heuristic=<list> : Enable optimization heuristic <list>: {sign|model} sign : Prefer signs minimizing objective model: Assume literals minimizing objective after each model
Does this work for you?
Sure was a small nitpick anyway. Was just pointing someone at the option and stumbled over the description.
It is also a bit unclear how to pass an empty list. It seems like the numeric 0 is possible but not the empty string.
You can pass all supported "off" values (
0
,"off"
,"no"
,"false"
) where a<list>
is expected. I'd like to keep the empty string reserved for flag-like options.
Perfect, off
is also a good value to disable it.
Thanks!
Clasp reports:
What about
It is also a bit unclear how to pass an empty list. It seems like the numeric
0
is possible but not the empty string.