Reads a MiniZinc model (given a model file and an instance file) and interprets it using the solver mapping defined in SolverOrOptions. At the end of solving, results are printed to the output stream, timing and progress messages are printed to the log_output stream, warnings to the warning_output stream, and error messages the error stream. This predicate always succeeds.
?- mzn_run("mymodel.mzn", "myinstance.mzn", fzn_ic). Found a solution with cost 10 Found no solution with cost 7.0 .. 9.0 end = 10 b1 = 1 b2 = 0 b3 = 1 b4 = 0 Objective value = 10 Total time 0.031s cpu (0.016 setup + 0.000 search) ?- mzn_run("queens.mzn", [n=8], fzn_ic). Starting search q = [1,5,8,6,3,7,2,4] Total time 0.015s cpu (0.000 setup + 0.000 search)