COMP2051代做、代写C/C++,Python编程
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 1
Artificial Intelligence Methods (COMP2051 or AE2AIM)
Prof. Ruibin Bai Spring 2024
Coursework: Perturbative hyper-heuristic for Bin Packing Problem
1. Introduction
Bin packing is one of the most studied combinatorial optimisation problems and has
applications in logistics, space planning, production, cloud computing, etc. Bin packing is
proven to be NP-Hard and the actual difficulties depend on both the size of the problem (i.e.
the total number of items to be packed) and other factors like the distribution of item sizes in
relation to the bin size as well as the number of distinct item sizes (different items may have a
same size).
In this coursework, you are asked to write a C/C++/Python program to solve this problem
using a perturbative hyper-heuristic method. In addition to submitting source code, a
written report (no more than 2000 words and 6 pages) is required to describe your algorithm
(see Section 4 for detailed requirements). Both your program and report must be completed
independently by yourself. The submitted documents must successfully pass a plagiarism
checker before they can be marked. Once a plagiarism case is established, the academic
misconduct policies shall be applied strictly.
This coursework carries 45% of the module marks.
2. Bin Packing Problem (BPP)
Given a set of n items, each item j has a size of aj, BPP aims to pack all items in the
minimum number of identical sized bins without violating the capacity of bins (V). The
problem can be mathematically formulated as follow:
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 2
This mathematical formulation is generally NOT solvable by existing integer programming
solvers like CPlex, Gurobi, LPSolve, especially when the number of items n is large. The
solution space of bin packing problem is characterised by its huge size and plateau-like that
makes it very challenging for traditional neighbourhood search methods. In order to
consistently solve the problem with good quality solutions, metaheuristics and hyperheuristics are used, which is the task of this coursework.
3. Problem instances
Over the years, a large number of BPP instances have been introduced by various research.
See https://www.euro-online.org/websites/esicup/data-sets/ for a collection of different bin
packing problem. In this coursework, we shall provide 3 instances files (binpack1.txt,
binpack3.txt and binpack11.txt), respectively representing easy, medium and hard instances.
From which 10 instances shall be selected for testing and evaluation of your algorithm in
marking. For each test instance, only 1 run is executed, and its objective value is used for
marking the performance component (see Section 5).
4. Experiments conditions and submission requirements
The following requirements should be satisfied by your program:
(1) You are required to submit two files exactly. The first file should contain all your
program source codes. The second file is a coursework report. Please do NOT
compress the files.
(2) Your source code should adopt a clean structure and be properly commented.
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 3
(3) Your report should include the followings:
• The main components of the algorithm, including solution encoding, fitness
function, list of low-level heuristics as well as considerations regarding the
intensification and diversification mechanisms. (12 marks).
• Statistical results (avg, best, worst of 5 runs) of the algorithm for all the problem
instances, in comparison with the best published results (i.e. the absolute gap to
the best results). Note that although your report should include results for 5 runs
but your final submission should only have one single run for each instance (i.e.
if you use the sketch code from the lab, set global variable NUM_OF_RUNS=1
before you submit the code). (3 marks)
• A short discussion/reflection on results and performance of the algorithm. (5
marks)
(4) Name your program file after your student id. For example, if your student number
is 2019560, name your program as 2019560.c (or 2019560.cpp, or 2019560.py).
(5) Your program should compile and run without errors on either CSLinux Server or a
computer in the IAMET406. Therefore, please fully tested before submission. You
may use one of the following commands (assuming your student id is 2019560 and
your program is named after your id):
gcc -std=c99 -lm 2019560.c -o 2019560
or
g++ -std=c++11 -lm 2019560.cpp -o 2019560
For Python programs, this second can be skipped.
(6) After compilation, your program should be executable using the following
command:
./2019560 -s data_fle -o solution_file -t max_time
where 2019560 is the executable file of your program, data_file is one of
problem instance files specified in Section 3. max_time is the maximum time
permitted for a single run of your algorithm. In this coursework, maximum of 30
seconds is permitted. soluton_file is the file for output the best solutions by
your algorithm. The format should be as follows:
# of problems
Instance_id1
obj= objective_value abs_gap
item_indx in bin0
item_indx in bin1
… …
Instance_id2
obj= objective_value abs_gap
item_indx in bin0
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 4
item_indx in bin1
… …
An example solution file for problem data file “binpack1.txt” is available on
moodle.
For submissions using Python, the compilation and running are combined in one
command as follows:
python 2019560.py -s data_fle -o solution_file -t max_time
(7) The solution file output in (6) by your algorithm (solution_file) is expected to
pass a solution checking test successfully using the following command on
CSLInux:
./bpp_checker -s problem_file -c solution_file
where problem_file is one of problem data files in Section 3. If your solution file
format is correct, you should get a command line message similar to: “Your total score
out of 20 instances is: 80." If the solutions are infeasible for some instances, you would
get error messages.
The solution checker can be downloaded from moodle page. It is runnable only on
CSLinux.
(8) Your algorithm should run only ONCE for each problem instance and each run
should take no more than 30 seconds.
(9) Please carefully check the memory management in your program and test your
algorithm with a full run on CSLinux (i.e. running multiple instances in one go). In
the past, some submitted programs can run for 1-2 instances but then crashed
because of out-of-memory error. This, if happens, will greatly affect your score.
(10) You must strictly follow policies and regulations related to Plagiarism. You are
prohibited from using recent AI tools like ChatGPT/GPT-4 or other similar large
language models (LLMs). Once a case is established, it will be treated as a
plagiarism case and relevant policies and penalties shall be applied.
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 5
5. Marking criteria
• The quality of the experimental results (20 marks). Your algorithm shall be tested for
a file containing 10 instances chosen from the provided set of instances. The
performance of your algorithm is evaluated by computing the absolute gap with the
best known results using
_ = _ _ − _ _
Criteria Mark
abs_gap < 0 New best results! Bonus: 2 extra marks for
each new best result.
abs_gap <= 0 2 marks per instance
0<abs_gap <=1 1.5 marks per instance
1<abs_gap<=2 1 mark per instance
2< abs_gap <=3 0.5 mark per instance
• abs_gap >4 or
• infeasible solution or
• fail to output solution
within required time limit
0 mark
• The quality of codes, including organisation of the functions/methods, naming
conventions and clarity and succinctness of the comments (5 marks)
• Report (20 marks)
6. Submission deadline
3rd May 2024, 4pm Beijing Time
Standard penalties are applied for late submissions.
7. How to submit
Submit via Moodle.
8. Practical Hints
• Solution encoding for bin packing is slightly more challenging compared with
knapsack program because both the number of bins to be used and the number of
items to be packed in each bin are parts of decisions to be optimised. Therefore, the
Artificial Intelligence Methods (COMP2051 or AE2AIM) Coursework Ver1.0 6
data structure that is used to hold the packing information cannot be implemented via
fixed-size arrays. You may consider to use vector from C++ STL (standard template
library) which requires you to include <vector.h> as header file. If you prefer C style
without classes, the following data type would be also acceptable:
struct bin_struct {
std::vector<item_struct> packed_items;
int cap_left;
};
struct solution_struct {
struct problem_struct* prob; //maintain a shallow copy of problem data
float objective;
int feasibility; //indicate the feasibility of the solution
std::vector<bin_struct> bins;
};
In this way, you could open/close bins and at the same time to add/remove items for a
specific bin through API functions provided by the vector library.
• The search space of bin packing problem has a lot of plateaus that make the problem
extremely difficult for simple neighbourhood methods. Therefore, multiple low-level
heuristics are suggested within a perturbative hyper-heuristic method. You are free to
select any of the perturbative hyper-heuristic methods described in
(https://link.springer.com/article/10.1007/s10288-011-0182-8), as well as some of the
more recent ones
(https://www.sciencedirect.com/science/article/pii/S0377221719306526).
• Your algorithm must be runnable on CSLinux and/or computers on IAMET406.
Therefore, you are not permitted to use external libraries designed specifically for
optimisation.
请加QQ:99515681 邮箱:99515681@qq.com WX:codinghelp
- WhatsApp营销软件,ws群发平台/ws协议号/ws频道号/ws业务咨询大轩
- 数字化转型 增材制造企业的未来发展之路
- WhatsApp源头机房出售协议号,ws群发必备工具推荐
- Telegram快速拉群营销软件,手把手教你TG快速营销引流
- WhatsApp代群发专业服务,全球推广,助您拓展国际市场
- 热水网平台:温暖每一刻,从心开始
- 刷新你的营销思维WhatsApp工具教你如何把握商业趋势站在风口浪尖
- 揭秘武汉昱旻翊翀百货有限公司潮品店用独特的品牌特色,赢得市场赞誉
- 数字化转型 增材制造企业的未来发展之路
- 代写Hypertension and Low Income in Toronto
- Instagram脚本打粉工具,ins超好用引流软件全球推荐!
- Instagram群发筛选软件,Ins群发注册工具,助你轻松营销!
- ins群发工具,ins群发助手,ins营销软件海外爆粉联系天宇
- 海外营销专家无一不推崇的WhatsApp拉群工具 助你轻松征服国际市场
- telegram群发软件,tg营销软件,2024年海外获客神器上线!
- WhatsApp营销软件/ws筛选器/ws协议号/ws全球混合协议号
- 全球营销专家 : telepram 群发协议助力商家,品牌曝光再不是难题
- 鑫海移民总经理新西兰探“亲”记 深度了解新西兰移民政策趋势
- WhatsApp拉群营销 新法宝
- Instagram群发筛选软件,Ins群发注册工具,助你轻松推广!
- 跨境电商群发拉群智能数据解读:WhatsApp代筛料子引领您的数据分析之旅
- instagram营销软件,ins群发拉群助手,爆粉营销欢迎测试联系
- 倍成就 WhatsApp拉群营销工具 为你的销售数字描绘辉煌
- Instagram引流助手,Ins拉群软件,共同助你实现营销目标!
- 从梦想到现实,我走过了一段曲折而又充满挑战的路。而在这段旅程中,WhatsApp拉群工具成了我实现生意喜悦变现的得力助手。
- 独树一帜,创意精髓:WhatsApp拉群工具点亮你的推广创意之火
- 雪浪云工业知识中台,开启知识管理新篇章
- Cover the Latest Developments in Allergy and Clinical Immunology at the EAACI Congress 2024 in Valen
- 蝉联!科华数据荣膺2023年全球UPS竞争战略创新与领导力奖
- 内蒙古工程机械:驾驭力量,筑梦草原
推荐
- 如何经营一家好企业,需要具备什么要素特点 我们大多数人刚开始创办一家企业都遇到经营 科技
- 丰田章男称未来依然需要内燃机 已经启动电动机新项目 尽管电动车在全球范围内持续崛起,但丰田章男 科技
- 全力打造中国“创业之都”名片,第十届中国创业者大会将在郑州召开 北京创业科创科技中心主办的第十届中国创业 科技
- 疫情期间 这个品牌实现了疯狂扩张 记得第一次喝瑞幸,还是2017年底去北京出差的 科技
- 老杨第一次再度抓握住一瓶水,他由此产生了新的憧憬 瘫痪十四年后,老杨第一次再度抓握住一瓶水,他 科技
- 苹果罕见大降价,华为的压力给到了? 1、苹果官网罕见大降价冲上热搜。原因是苹 科技
- B站更新决策机构名单:共有 29 名掌权管理者,包括陈睿、徐逸、李旎、樊欣等人 1 月 15 日消息,据界面新闻,B站上周发布内部 科技
- 智慧驱动 共创未来| 东芝硬盘创新数据存储技术 为期三天的第五届中国(昆明)南亚社会公共安 科技
- 创意驱动增长,Adobe护城河够深吗? Adobe通过其Creative Cloud订阅捆绑包具有 科技
- 升级的脉脉,正在以招聘业务铺开商业化版图 长久以来,求职信息流不对称、单向的信息传递 科技