1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

18 lines
405 B
MiniZinc

m = 9; % rows
n = 9; % columns
% max intensity = 21
Intensity = [|
2, 7, 2, 8, 3, 9, 3, 11, 3 |
11, 3, 13, 3, 1, 3, 1, 3, 1 |
3, 1, 4, 1, 4, 1, 4, 1, 0 |
1, 1, 2, 2, 2, 4, 2, 4, 2 |
6, 2, 7, 2, 8, 3, 10, 3, 11 |
3, 12, 3, 1, 3, 1, 3, 1, 3 |
1, 3, 1, 4, 1, 4, 1, 4, 1 |
0, 2, 1, 2, 3, 2, 4, 2, 5 |
2, 7, 2, 8, 2, 9, 3, 10, 3
|];