Question: base on this data value , please write me a minizinc code for MILP: % This first case is a very simple test on 2

base on this data value , please write me a minizinc code for MILP: %This first case is a very simple test on 2 days and 2 wind turbines
%You can solve it by hand to be sure of your result and modify the data for testing purposes
n_employee =1;
n_turbine =2;
n_tasks =3;
n_week =1;
n_day =2;
n_period = n_day*3; %3 periods per day
%productivity of an wind turbine at each period
productivity = array2d(1..n_turbine,1..n_period,[10,8,10,8,9,9,
10,5,6,7,9,9]);
%duration and location of each task
on_turbine = array1d(1..n_tasks,[1,1,2]);
length = array1d(1..n_tasks,[1,1,2]);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!