79321539

Date: 2025-01-01 11:56:41
Score: 1.5
Natty:
Report link

I am not sure what you want to define in line below but syntax is not correct.

var 1..N_ROUNDS: RoundOfMatch [m in 1..N_MATCHES];

I guess you want to define an array of variables. In such case you should use something like this

array[1..N_MATCHES] of var 1..N_ROUNDS: RoundOfMatch;

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (0.5):
Posted by: Krzysztof Kuchcinski