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 e3ddb37 commit c53a787
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zad1konspekt10/zad1konspekt10.mod
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ int Js[S][J] = ...;
device Tj[J][T] = ...;

dvar int x[S][J] in 0..1;
dvar float+ y[J][T]; //todo: should be plus?
//dvar float+ y[J][T]; //todo: should be plus?
//dvar int+ y[J][T]; //todo: should be plus?
dvar int y[J][T] in 0..1; //todo: discuss

minimize
sum(j in J) sum(t in T) Tj[j][t].cost * y[j][t];
Expand Down

0 comments on commit c53a787

Please sign in to comment.