Skip to content

Commit

Permalink
fixed version
Browse files Browse the repository at this point in the history
  • Loading branch information
jifwin committed Jan 1, 2017
1 parent 6c6e8cb commit 0306d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zad1konspekt10/zad1konspekt10.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ minimize
subject to
{
forall (s in S) sum(j in J: Js[s][j] == 1) x[s][j] == 1;
forall (j in J) sum (s in S) (Js[s][j]*x[s][j]) <= sum(t in T) (Tj[j][t].number_of_clients * y[j][t]);
forall (j in J) sum (s in S: Js[s][j] == 1) x[s][j] <= sum(t in T) (Tj[j][t].number_of_clients * y[j][t]);
forall (j in J) sum(t in T) y[j][t] <= 1;
}

0 comments on commit 0306d0a

Please sign in to comment.