You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using minizinc --help <solver> from the command line (for example with Chuffed), option -f/``--free-search" is not described in the output. Shouldn't it be part of the "MZN-FZN plugin options"?
The text was updated successfully, but these errors were encountered:
Instructs the solver to conduct a “free search”, i.e., ignore any search annotations. The solver is not required to ignore the annotations, but it is allowed to do so.
My understanding of OR-Tools does here is that it will use search annotations for one worker (CP-SAT) but still use other workers like the LNS and local-search workers which will not care about search annotations.
It should be noted that for this solver, my understand is that you are better off using parallel workers, either using --parallel or the num_workers SAT parameter instead of --free-search.
Also note that -f will not be used if you specify workers >1 or if solving for satisfiability.
OS: Linux Ubuntu 22.04
MZN version: 2.8.5
Using
minizinc --help <solver>
from the command line (for example with Chuffed), option-f
/``--free-search" is not described in the output. Shouldn't it be part of the "MZN-FZN plugin options"?The text was updated successfully, but these errors were encountered: