I want to use the OR-Tools solver in combination with MiniZinc (IDE or CLI).
I followed the steps in this answer. My MiniZincIDE is now set up like this: .
When I select the OR tools solver and try to run it on a simple .mzn model I get the following error:
(included from file '/home/my_username/lib/MiniZincIDE-2.5.5-bundle-linux-x86_64/share/minizinc/std/solver_redefinitions.mzn')
/home/my_username/lib/MiniZincIDE-2.5.5-bundle-linux-x86_64/bin/or-tools/share/minizinc/redefinitions-2.0.mzn:104.9-11:
any: xx = [ x[i] | i in index_set(x) where occurs(v[i])];
^^^
Error: syntax error, unexpected any
(included from file '/home/my_username/lib/MiniZincIDE-2.5.5-bundle-linux-x86_64/share/minizinc/std/solver_redefinitions.mzn')
/home/my_username/lib/MiniZincIDE-2.5.5-bundle-linux-x86_64/bin/or-tools/share/minizinc/redefinitions-2.0.mzn:111.9-11:
any: xx = [ x[i] | i in index_set(x) where occurs(v[i])];
^^^
Error: syntax error, unexpected any
Process finished with non-zero exit code 1
How can I solve this?