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.

16 lines
275 B
MiniZinc

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