Skip to content

Commit

Permalink
change problematic line in minizinc model which was raising exception…
Browse files Browse the repository at this point in the history
… with minizinc 2.8.3
  • Loading branch information
g-poveda authored and nhuet committed Apr 12, 2024
1 parent 2f89e47 commit ac66bf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ constraint forall(sk in Skill, i in Act)(

% Prune.
constraint forall(w in Units, i in Act)(
let{var opt set of Skill: sk = {skl | skl in Skill where skillunits[w, skl]>0 /\
let{var set of int: sk = {skl | skl in Skill where skillunits[w, skl]>0 /\
sum(m in modes[i])(skillreq[skl, m])>0}}
in(
if sk=={} then
Expand Down

0 comments on commit ac66bf6

Please sign in to comment.