当前位置:网站首页>Mathematical modeling 2004b question (transmission problem)
Mathematical modeling 2004b question (transmission problem)
2022-07-06 09:04:00 【Also far away】
One 、lingo Code
model:
sets:
mach /1..8/: v;
time /1..10/ ;
mt(mach, time): a, x, n, p;
endsets
data:
a =
70, 0, 50, 0, 0, 30, 0, 0, 0, 40,
30, 0, 20, 8, 15, 6, 2, 0, 0, 8,
110, 0, 40, 0, 30, 0, 20, 40, 0, 40,
55, 5, 10, 10, 10, 10, 15, 0, 0, 1,
75, 5, 15, 0, 15, 15, 0, 10, 10, 10,
95, 0, 10, 20, 0, 15, 10, 20, 0, 10,
50, 15, 5, 15, 10, 10, 5, 10, 3, 2,
70, 0, 20, 0, 20, 0, 20, 10, 15, 5;
p =
-505, 0, 124, 168, 210, 252, 312, 330, 363, 489,
-560, 0, 182, 203, 245, 300, 320, 360, 410, 495,
-610, 0, 152, 189, 233, 258, 308, 356, 415, 500,
-500, 150, 170, 200, 255, 302, 325, 380, 435, 800,
-590, 0, 116, 146, 188, 215, 250, 310, 396, 510,
-607, 0, 159, 173, 205, 252, 305, 380, 405, 520,
-500, 120, 180, 251, 260, 306, 315, 335, 348, 548,
-800, 153, 183, 233, 253, 283, 303, 318, 400, 800;
v = 2.2, 1, 3.2, 1.3, 1.8, 2, 1.4, 1.8;
enddata
! xi1 Is the fixed value ;
@for(mt(i,j): x(i, 1) = a(i,1));
@for(mt(i,j): x(i, 2) = a(i,2));
@for(mt(i,j)|j#ge#2 #and# j#le#9: x(i, j+1) <= x(i,j)+15*v(i));
@for(mt(i,j)|j#ge#2 #and# j#le#9: x(i, j+1) >= x(i,j)-15*v(i));
! And for 982.4;
@sum(mt(i, j): x(i,j)) = 982.4;
! xij <= aij;
@for(mt(i, j) : x(i, j) <= a(i, j));
! xij >= 0;
@for(mt(i, j) : x(i, j) >= 0);
! If xij = 0,nij = 0, otherwise nij = 1;
@for(mt(i, j) : n(i, j) = @if(x(i, j)#eq#0, 0, 1));
@for(mt : @bin(n));
! The goal is ;
c = @max(mt(i, j) : p(i, j)*n(i, j));
min = c;
end
Two 、 experimental result
3、 ... and 、 Be careful
lingo Solve local optimal solution by default , You need to set up and solve the global optimal solution as follows
边栏推荐
- What is MySQL? What is the learning path of MySQL
- Guangzhou will promote the construction of a child friendly city, and will explore the establishment of a safe area 200 meters around the school
- Pytorch view tensor memory size
- Selenium+pytest automated test framework practice
- 【剑指offer】序列化二叉树
- LeetCode:498. Diagonal traversal
- [oc]- < getting started with UI> -- common controls - prompt dialog box and wait for the prompt (circle)
- LeetCode:836. Rectangle overlap
- pytorch查看张量占用内存大小
- 【每日一题】搬运工 (DFS / DP)
猜你喜欢
Guangzhou will promote the construction of a child friendly city, and will explore the establishment of a safe area 200 meters around the school
Promise 在uniapp的简单使用
如何正确截取字符串(例:应用报错信息截取入库操作)
【shell脚本】——归档文件脚本
Alibaba cloud server mining virus solution (practiced)
Pytest参数化你不知道的一些使用技巧 /你不知道的pytest
Compétences en mémoire des graphiques UML
Simclr: comparative learning in NLP
[OC]-<UI入门>--常用控件-UIButton
Detailed explanation of dynamic planning
随机推荐
LeetCode:34. Find the first and last positions of elements in a sorted array
Improved deep embedded clustering with local structure preservation (Idec)
Niuke winter vacation training 6 maze 2
LeetCode:221. 最大正方形
不同的数据驱动代码执行相同的测试场景
TP-LINK 企业路由器 PPTP 配置
Chapter 1 :Application of Artificial intelligence in Drug Design:Opportunity and Challenges
KDD 2022论文合集(持续更新中)
【文本生成】论文合集推荐丨 斯坦福研究者引入时间控制方法 长文本生成更流畅
LeetCode:673. Number of longest increasing subsequences
After reading the programmer's story, I can't help covering my chest...
一改测试步骤代码就全写 为什么不试试用 Yaml实现数据驱动?
Esp8266-rtos IOT development
Tdengine biweekly selection of community issues | phase III
To effectively improve the quality of software products, find a third-party software evaluation organization
Selenium+pytest automated test framework practice (Part 2)
Post training quantification of bminf
SimCLR:NLP中的对比学习
Ijcai2022 collection of papers (continuously updated)
Pytest parameterization some tips you don't know / pytest you don't know