当前位置:网站首页>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 an R-value reference and what is the difference between it and an l-value?
- [OC foundation framework] - [set array]
- Chapter 1 :Application of Artificial intelligence in Drug Design:Opportunity and Challenges
- LeetCode:剑指 Offer 48. 最长不含重复字符的子字符串
- A convolution substitution of attention mechanism
- Computer graduation design PHP Zhiduo online learning platform
- LeetCode:124. Maximum path sum in binary tree
- [text generation] recommended in the collection of papers - Stanford researchers introduce time control methods to make long text generation more smooth
- KDD 2022 paper collection (under continuous update)
- 七层网络体系结构
猜你喜欢
![[oc]- < getting started with UI> -- learning common controls](/img/2c/d317166e90e1efb142b11d4ed9acb7.png)
[oc]- < getting started with UI> -- learning common controls

Esp8266-rtos IOT development

Different data-driven code executes the same test scenario

Promise 在uniapp的简单使用

Computer graduation design PHP Zhiduo online learning platform

After reading the programmer's story, I can't help covering my chest...

Problems encountered in connecting the database of the project and their solutions

I-BERT

LeetCode:221. Largest Square

Advanced Computer Network Review(5)——COPE
随机推荐
LeetCode:34. Find the first and last positions of elements in a sorted array
pytorch查看张量占用内存大小
xargs命令的基本用法
BN折叠及其量化
LeetCode:394. String decoding
[MySQL] multi table query
LeetCode:34. 在排序数组中查找元素的第一个和最后一个位置
Niuke winter vacation training 6 maze 2
使用latex导出IEEE文献格式
Nacos 的安装与服务的注册
一篇文章带你了解-selenium工作原理详解
LeetCode:41. 缺失的第一个正数
What is an R-value reference and what is the difference between it and an l-value?
MongoDB 的安装和基本操作
Advanced Computer Network Review(5)——COPE
[Hacker News Weekly] data visualization artifact; Top 10 Web hacker technologies; Postman supports grpc
MYSQL卸载方法与安装方法
Simclr: comparative learning in NLP
Selenium+pytest automated test framework practice
多元聚类分析