Most voted "minizinc" questions
2 questions
Sort by count of
-
1
votes0
answers18
viewsHow do I make this code in Minizinc?
How can I make this code in Minizinc? I tried it this way: constraint forall(i in nurse, j in patient where j != 1)(start[i] == min(arrive[i,j] + ((1-y[i,1,j])*H) - sum(u in…
minizincasked 6 years, 9 months ago Julia Campos 157 -
0
votes1
answer16
viewsHow to make a function return an array in Minizinc
I have the following function in Minizinc: function var int: DefinitelyVisited(array[int] of var int: S) = forall( i in index_set(S) ) ( S[i] == 1 ); This function is returning an integer, but I…
minizincasked 6 years, 6 months ago Julia Campos 157