⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 food.mod

📁 著名的大规模线性规划求解器源码GLPK.C语言版本,可以修剪.内有详细帮助文档.
💻 MOD
字号:
/* Food Manufacture 1, section 12.1 in * Williams, "Model Building in Mathematical Programming" * * Sebastian Nowozin <nowozin@gmail.com> */set oils;set month;/* Buying prices of the raw oils in the next six month. */param buyingprices{month,oils};/* Actual amount bought in each month. */var buys{month,oils} >= 0;/* Stock for each oil. */var stock{month,oils} >= 0;/* Price of the produced product */param productprice >= 0;param storagecost;param oilhardness{oils} >= 0;/* Actual amount of output oil produced in each month */var production{m in month} >= 0;var useoil{m in month, o in oils} >= 0;maximize totalprofit:    sum{m in month} productprice*production[m]    - sum{m in month, o in oils} buyingprices[m,o]*buys[m,o]    - sum{m in month, o in oils} storagecost*stock[m,o];/* Constraints *//* 1. Starting stock */s.t. startstock{o in oils}:    stock[1,o] = 500;s.t. endstock{o in oils}:    stock[6,o] + buys[6,o] - useoil[6,o] >= 500;/* 2. Stock constraints */s.t. stocklimit{m in month, o in oils}:    stock[m,o] <= 1000;s.t. production1{m in month, o in oils}:    useoil[m,o] <= stock[m,o] + buys[m,o];s.t. production2{m1 in month, m2 in month, o in oils : m2 = m1+1}:    stock[m2,o] = stock[m1,o] + buys[m1,o] - useoil[m1,o];s.t. production3a{m in month}:    sum{o in oils} oilhardness[o]*useoil[m,o] >= 3*production[m];s.t. production3b{m in month}:    sum{o in oils} oilhardness[o]*useoil[m,o] <= 6*production[m];s.t. production4{m in month}:    production[m] = sum{o in oils} useoil[m,o];/* 3. Refining constraints */s.t. refine1{m in month}:    useoil[m,"VEG1"]+useoil[m,"VEG2"] <= 200;s.t. refine2{m in month}:    useoil[m,"OIL1"]+useoil[m,"OIL2"]+useoil[m,"OIL3"] <= 250;solve;for {m in month} {    printf "Month %d\n", m;    printf "PRODUCE %4.2f tons, hardness %4.2f\n", production[m],        (sum{o in oils} oilhardness[o]*useoil[m,o]) / (sum{o in oils} useoil[m,o]);    printf "\tVEG1\tVEG2\tOIL1\tOIL2\tOIL3\n";    printf "STOCK";    printf "%d", m;    for {o in oils} {        printf "\t%4.2f", stock[m,o];    }    printf "\nBUY";    for {o in oils} {        printf "\t%4.2f", buys[m,o];    }    printf "\nUSE";    printf "%d", m;    for {o in oils} {        printf "\t%4.2f", useoil[m,o];    }    printf "\n";    printf "\n";}printf "Total profit: %4.2f\n",    (sum{m in month} productprice*production[m]    - sum{m in month, o in oils} buyingprices[m,o]*buys[m,o]    - sum{m in month, o in oils} storagecost*stock[m,o]);printf "      turnover: %4.2f\n",    sum{m in month} productprice*production[m];printf "      buying costs: %4.2f\n",    sum{m in month, o in oils} buyingprices[m,o]*buys[m,o];printf "      storage costs: %4.2f\n",    sum{m in month, o in oils} storagecost*stock[m,o];data;param : oils : oilhardness :=    VEG1    8.8    VEG2    6.1    OIL1    2.0    OIL2    4.2    OIL3    5.0 ;set month := 1 2 3 4 5 6;param buyingprices:           VEG1    VEG2    OIL1    OIL2    OIL3    :=1           110     120     130     110     1152           130     130     110     90      1153           110     140     130     100     954           120     110     120     120     1255           100     120     150     110     1056           90      100     140     80      135 ;param productprice := 150;param storagecost := 5;end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -