Problem Solving with MiniZinc
It all started with this banner; a course recommendation on Coursera:
How can you say “no” to that? (LEGO bricks!)
This course turned out to be brutal. It advertised 5–10 hours/week of work and might have understated the case. (In my experience, online courses usually overstate the amount of work involved.)
Even though it was a hard class, I learned a lot. One of the reviews says:
Difficult but rewarding course.
and that’s also how I would describe it.
This version of the course is a few years old, see below for a newer version.
MiniZinc
You can’t teach programming without a programming language. Similarly, you can’t teach optimization modeling abstractly, you’ll need a modeling language.
MiniZinc is the language you’ll use to describe models. These models get compiled and run on solvers. The solvers will search through the problem space and generate possible solutions.
Let’s go through an example.
An example: The Change-making problem
From the wikipedia page:
how can a given amount of money be made with the least number of coins
of given denominations?
Specifically, in the US, a cashier would give back $0.78 as 3 quarters and 3 pennies.
BEFORE you grab that marker and head over to that whiteboard, let me stop you.
I know that you know how to solve this: that’s why I picked this problem.
And I’m going to explain why it’s a bad idea for you to solve this problem.
A solution
Using MiniZinc, I would try this:
- line 2: the amount, in cents, hardcoded to $0.78
- line 3: US denominations, in cents
- line 5: an array of counts – how many coins to use for each denomination
- line 9: constraint: the sum of the counts times the denominations must add up to the amount
- line 11: the sum of the counts is the number of coins
- line 12: minimize the number of coins
- line 14-18: how to format the output
Run it:
NOTE: This program was simplified for the purpose of discussion – I wouldn’t normally hardcode everything. There are ways to separate your model from your data, and/or to pass arguments from the command-line.
So what?
MiniZinc code is declarative – you’re not telling it how to solve the problem, you’re just telling it what the problem is:
- what is constant (amount, denominations)
- what is variable (counts)
- what constraints we have
- what to optimize
If you’re still not convinced, let me hold your beer
while you think of your own solution and think how you would integrate the
following constraints without having to rewrite – or worse: completely re-think –
the whole problem:
(let alone doing it in 1 or 2 lines of code)
Is there a solution with 8 coins?
What’s the best solution without quarters?
What’s the best solution using exactly 3 nickels?
Is there a solution where we give a different number for each coin? (but at least one)
What if we don’t use pennies?
Right, because sometimes there are no solutions satisfying all the constraints.
Stand on the shoulders of giants
What you write in MiniZinc gets compiled down to a format that solvers can run. This happens for the same reasons you don’t usually write software in assembly:
- you can keep your solution at a higher-level
- you can keep your solution more portable – you can run it against different solvers that expect different inputs
- certain optimizations can be done by the “compiler”
Solvers are magnificent beasts. They combine the insights of many researchers who have dedicated their lives to finding better ways to run certain algorithms (and other time-saving shortcuts). For example: if you can point out to the solver that your problem is a variation of the Knapsack problem, you’ll often get answers orders of magnitude faster than you would otherwise.
Don’t reinvent the wheel: determine that you need a wheel, and use one that’s been designed by a pro.
How to get started?
MiniZinc has its own website, tutorial and documentation. But I can’t say that I find them to be great resources – not until you’re already familiar with the content.
I recommend the updated courses on Coursera:
Write less code and solve harder problems.
If you think that solving sudoku takes more than a few lines of code, or a few minutes, you’re working too hard.