99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫JC4004編程、代做Python設(shè)計程序
代寫JC4004編程、代做Python設(shè)計程序

時間:2024-12-14  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



School of Natural and Computing Sciences 
Department of Computing Science 
2024 – 2025 
Programming assignment – Groupwork by a team of 4-5 students 
Title: JC4004 – Computational Intelligence Note: This assignment accounts for 30% of 
the total mark of the course. 
Deadline: Submit the assignment in MyAberdeen by 19. December 2024 at 23:00 (China time). 
Information for Plagiarism and Collusion: The source code and your report may be submitted for 
plagiarism check in MyAberdeen. Please refer to the slides available at MyAberdeen for more 
information about avoiding plagiarism before you start working on the assessment. Excessive use 
of large language models, such as ChatGPT, for writing the code or the report can also be considered 
as plagiarism. In addition, submitting similar work with another group can be considered as 
collusion. 
Information about Extensions: According to the new extension policy of University of Aberdeen, 
teachers are no longer allowed to give deadline extensions for coursework assignments. Extensions 
may be requested from the school administration by e-mail: uoa-ji-enquiries@abdn.ac.uk. 
Extensions require strong justifications (such as serious illness or grievance), and extension requests 
should be accompanied with supporting evidence, such as a medical certificate. See also a separate 
document for the extension policy. Since this assignment is a groupwork assignment, extensions 
would be granted in very exceptional situations only. 
 page 2 of 6 
Introduction 
In this assignment, your task is to build an artificial intelligence game bot for playing the traditional 
board game Fox and Goose. Your game bot should be able to play the game on both sides, as a fox 
and as a goose. The detailed rules of the game are explained below. Please note that there are 
different versions of the game: for this assignment, you should follow the rules described in this 
document. 
Fox and Goose is a two-player board game. One of the players is a fox trying to capture all the geese. 
Another player represents the geese and tries to surround the fox so that it cannot move any more. 
The game is played on a board with 33 possible locations for the fox and the geese. In the beginning, 
there are 15 geese and one fox on the board, as illustrated in the Figure 1. The white pieces are the 
geese, and the red piece is the fox. 
 
The game is played in turns. In this version of the game, the fox and the geese can both move one 
step horizontally, vertically, or diagonally on their turn along the lines on the board. The player 
playing goose can select any of the geese on the board to move. Please note that diagonal movement 
is only allowed from some of the positions, as indicated by the lines on the board. 
You cannot move a piece to a position that is already taken by another piece. However, the fox can 
capture (or eat) a goose by jumping over it to a free position. The captured goose is removed from 
the board. It is also possible to capture multiple geese in one turn by chaining the jumps like in 
Checkers. A goose cannot capture the fox. It is not mandatory to capture even if it is possible, but it 
is mandatory for both the fox and the geese to make a move in their turn. Examples of legal moves 
are shown in Figure 2 below. 
The goal of the geese is to surround the fox so that it cannot make any legal moves anymore. The 
goal of the fox is to capture all the geese. Theoretically, the minimum of four geese would be enough 
to surround the fox; therefore, the fox wins when there are less than four geese left on the board. 
Examples of winning the game are shown in Figure 3. 
Since the fox and the geese have a different goal and follow different rules, the game is unbalanced. 
Therefore, the players usually play an even number of games, swapping their roles. The player that 
 
Figure 1. Initial positions in Fox and Goose. 
 page 3 of 6 
wins more games is the final winner. In this assignment, your task is to implement the game logic for 
both the fox and the goose. 
 
General Guidance and Requirements 
In this assignment, you are required to write a Python class Player that is able to play Fox and 
Goose game through methods play_fox() and play_goose(). The current game board is 
passed to the methods as a parameter, and the methods will return the next move as a fox or as a 
goose, respectively. Python file TestFoxAndGoose.py will be shared to demonstrate how the game 
testing framework uses the Player class. 
 
Figure 2. Examples of legal moves for the geese (left) and the fox (right), respectively. 
 
 
Figure 3. Examples of the fox winning the game (left) and the geese winning the game (right). 
 page 4 of 6 
The board is a 2-D list object with 7 × 7 characters representing the state of the game. Characters 
'F' and 'G' mark the fox and the geese, respectively. An empty position is marked with a dot '.' 
and a space ' ' marks a position that is off the playing area. The board is initialised in class 
FoxAndGoose in file TestFoxAndGoose.py as follows: 
 
The play_fox() and play_goose()methods in your code should take the board as defined 
above as an input parameter. As an output parameter, the method should return a list object with 
two or more pairs of integers, where the first value represents the row, and the second value 
represents the column on the board. The first pair is the initial position, and the second pair is the 
target position. For example, return value [[3,2],[3,3]] means that the piece in the 4th row, 3rd 
column will be moved to the 4th row, 4th column. Note that the numbering starts from zero: for 
example, position [0,1] is the 2
nd column of the 1
st row. 
The play_fox()method can return a longer list with several target positions in case the fox 
captures more than just one goose in one move. For example, return value [[3,3],[3,1], 
[5,3]] means that the fox first jumps from position [3,3] to position [3,1], capturing the goose 
in position [3,2], and then continues to position [5,3], capturing the goose in position [4,2]. 
You can decide freely what kind of techniques of computational intelligence you use to implement 
the game logic. You can implement additional functions and classes if necessary. However, the 
Player class should interact with the game framework only through the play_fox() and 
play_goose()methods, as described above. The bot should have a reasonable complexity: in the 
testing phase, a time limit of 5 seconds will be applied to consider the moves. If your implementation 
requires time-consuming initialisation, such as downloading a deep neural network, initialisation 
should be done in the class Player constructor __init__, not the play_fox() and 
play_goose()methods. 
You can use code generation tools and code from external sources moderately for assisting 
implementation of parts of the code, but the use of any sources or tools should be explained, and 
the references should be given in the project report. 
 
Submission Requirements 
You should submit the work in the course page in MyAberdeen. Your submission should include at 
least two files: file TeamXX.py that includes the Python code implementing class Player with 
methods play_fox() and play_goose(), and ReportXX.pdf that is the project report. In the 
file names, replace XX with team number, for example 05. As an example, we provide file Team00.py 
that allows you to play the game manually with moves entered by a human user. If your code requires 
any additional files to run, such as pre-trained neural network, you should include them also in your 
submission. 
Please note that it is your responsibility to make sure that the code in TeamXX.py works when we 
test it: you should use file TestFoxAndGoose.py to import your class and to test that your code works 
with the testing framework. Replace module name Team00 in module=__import__ 
("Team00") with your own file name without .py extension. If your code has external 
dependencies requiring additional installations, they should be clearly explained in the project report 
or readme file included in the submission. 
Note that the game bots implemented by different groups will play against each other, so it is 
essential to ensure compatibility. You should use Python 3. If you use any third-party packages such 
as TensorFlow or PyTorch, we recommend using the latest stable version and to avoid using features 
with known backwards compatibility problems. We suggest starting with a clean environment and to 
keep track of all the installed packages and their version numbers and reporting them in the project 
report or readme file. 
Note that at the time of writing, the latest TensorFlow version is not compatible with the latest stable 
Python release 3.13.0. Therefore, if you plan to use TensorFlow, the Python version should be 3.12.7 
or earlier. 
The length of the project report should be approximately 1,500 words. It is recommended to include 
graphical illustrations, but screenshots of the program code should be avoided. If the code 
implements some complex algorithms that are difficult to explain otherwise, flowcharts or 
pseudocode can be used as tools of illustration. The report should include the following sections: 
1. Introduction: about 200 words. 
2. Theoretical basis, including description of the used methods and algorithms with a brief 
justification why those techniques were chosen: about 600 words. 
3. Implementation details, including the used libraries and e.g., an UML diagram or a list of the 
essential methods and their parameters: about 300 words. 
4. Conclusions, including self-reflection, difficulties faced, experiences from testing the code, 
and ideas for future improvements: about 300 words. 
5. Summary of the individual roles, including brief description of team members’ contributions: 
about 100 words. 
6. References. 
If you wish the results for your group to be published in the leaderboard in MyAberdeen, please give 
a name for your group in the report! page 6 of 6 
Marking Criteria 
The assignment will be marked based on the project report (40 marks), methodology (40 marks), and 
performance (20 marks). 
The project report will be marked according to the coverage of the required aspects, clarity of 
presentation (including language and illustrations), consistency between the report and the 
submitted code, and relevance of the references. 
The methodology will be evaluated based on the suitability of the chosen methods and algorithms 
for the given task, creativity (for example, combining different methods in an unconventional way), 
and implementation (e.g., clarity of the source code, computational efficiency). 
For performance evaluation, we will test all the submitted assignments by arranging them to play 
against each other. Every submission will play against each of the other submissions twice, once as a 
fox and once as a goose. The results will be aggregated in a league table, where a win gives one point, 
and a loss gives zero points. The winner will be awarded 20 marks, and the other groups will be 
awarded marks based on the formula: 

 is the mark for group
 is the total points for group , and w**8;𝑖𝑛𝑛Ү**;w**3; is the total points for 
the winner of the league. 
Note that if both game bots repeat moves back and forth to the same position, the game may end in 
a deadlock situation. To resolve deadlocks, the maximum number of moves is set to 1000. If the game 
ends without a winner due to a deadlock, both players will be awarded zero points. 
 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp



 

掃一掃在手機打開當(dāng)前頁
  • 上一篇:代寫Tic-Tac-To: Markov Decision、代做java程序語言
  • 下一篇:代做MSE 280、代寫MATLAB編程設(shè)計
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計優(yōu)化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發(fā)動機性能
    挖掘機濾芯提升發(fā)動機性能
    海信羅馬假日洗衣機亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          久久久久国色av免费观看性色| 国产亚洲女人久久久久毛片| 亚洲一区国产视频| 在线成人激情视频| 国产精品久久久久国产a级| 久热精品视频在线| 亚洲欧美综合v| 亚洲美女视频在线免费观看| 国产亚洲欧美另类中文| 欧美三级电影一区| 久久婷婷av| 久久精品日韩| 亚洲欧美日韩精品久久久| 日韩一二三区视频| 亚洲另类一区二区| 亚洲国产精品va在看黑人| 国产欧美综合在线| 国产精品视频九色porn| 欧美日韩一区三区四区| 欧美激情一二区| 久久综合色8888| 久久精品噜噜噜成人av农村| 亚洲校园激情| 亚洲图片你懂的| 亚洲愉拍自拍另类高清精品| 99精品视频免费| 在线亚洲观看| 亚洲综合电影| 欧美中文在线免费| 久久精品日产第一区二区三区| 亚洲欧洲99久久| 亚洲免费在线精品一区| 亚洲欧美日韩一区在线观看| 亚洲愉拍自拍另类高清精品| 亚洲欧美在线x视频| 欧美一区1区三区3区公司| 欧美在线国产| 玖玖在线精品| 欧美国产日本| 国产精品久久久久高潮| 国产欧美日韩亚州综合| 国产亚洲一区在线| 在线免费高清一区二区三区| 亚洲激情在线观看视频免费| 一区二区欧美激情| 亚洲欧美国产毛片在线| 久久蜜臀精品av| 欧美另类综合| 国产精品入口日韩视频大尺度| 国产色视频一区| 亚洲精品欧美日韩| 午夜精品国产| 欧美成人精品在线观看| 欧美三级视频在线观看| 国产日韩精品久久| 亚洲精品免费在线观看| 午夜精彩视频在线观看不卡| 女生裸体视频一区二区三区| 国产精品第一区| 亚洲第一区色| 香蕉久久精品日日躁夜夜躁| 欧美国产日本韩| 国产一区91| 亚洲午夜高清视频| 免费精品视频| 国产欧美精品在线| 一区二区三区鲁丝不卡| 久久久一本精品99久久精品66| 欧美视频在线观看免费| 亚洲第一综合天堂另类专| 亚洲制服欧美中文字幕中文字幕| 蜜桃av一区二区| 国产亚洲网站| 欧美亚洲日本国产| 国产精品av免费在线观看| 亚洲第一色在线| 久久久久.com| 国产日韩欧美三级| 中文一区二区在线观看| 欧美成人免费全部| 狠狠色狠狠色综合日日小说| 亚洲综合日韩在线| 欧美日韩国产综合在线| 亚洲黄色精品| 欧美国产日韩一区二区三区| 在线观看福利一区| 久久亚洲综合色| 国户精品久久久久久久久久久不卡| 中国成人亚色综合网站| 欧美日韩国产综合久久| 亚洲精品欧美在线| 欧美国产日本高清在线| 亚洲国产乱码最新视频| 久久夜精品va视频免费观看| 国产午夜久久久久| 欧美一区二视频| 韩国三级电影久久久久久| 久久精品91| 亚洲风情亚aⅴ在线发布| 久久亚洲一区二区三区四区| 激情综合网激情| 另类人畜视频在线| 91久久精品国产91性色tv| 美女精品在线观看| 亚洲精品在线二区| 欧美色视频一区| 亚洲欧美日韩国产综合| 国产欧美一区二区白浆黑人| 久久精品视频亚洲| 亚洲黄色免费网站| 欧美体内she精视频| 午夜精品一区二区三区在线播放| 国产精品一区二区久久精品| 久久er99精品| 亚洲国产日韩一区二区| 欧美日韩精品一本二本三本| 亚洲午夜一区二区| 国内精品久久久| 欧美精品在线观看| 午夜精品久久久久久久蜜桃app| 国产日韩精品一区| 欧美—级a级欧美特级ar全黄| 亚洲天堂av在线免费观看| 国产热re99久久6国产精品| 蜜臀久久99精品久久久久久9 | 欧美激情第4页| 亚洲永久免费精品| 亚洲第一精品福利| 国产精品一区视频| 牛牛精品成人免费视频| 亚洲一区免费网站| 亚洲国产精品电影| 国产精品嫩草影院av蜜臀| 久久综合九色综合欧美狠狠| 亚洲一本大道在线| 亚洲欧洲一区二区三区| 国产欧美丝祙| 欧美日韩一区二区免费在线观看| 久久久不卡网国产精品一区| 中文一区字幕| 国产伦精品一区| 欧美日韩免费高清一区色橹橹| 久久精品中文字幕一区二区三区| 亚洲香蕉伊综合在人在线视看| 在线国产精品播放| 国产欧美日韩中文字幕在线| 欧美日韩国产综合视频在线观看| 久久精品动漫| 欧美一级电影久久| 中文一区二区| 一区二区不卡在线视频 午夜欧美不卡在 | 国产精品vip| 欧美激情精品久久久久久黑人| 欧美一区二区视频97| 亚洲一区免费网站| 一区二区三区鲁丝不卡| 日韩西西人体444www| 亚洲国产精品999| 极品中文字幕一区| 国产亚洲亚洲| 国产区在线观看成人精品| 国产精品日韩精品欧美精品| 欧美午夜视频在线| 欧美三级在线播放| 国产精品vvv| 国产精品亚洲一区二区三区在线| 欧美色精品在线视频| 欧美三级视频在线| 国产精品啊啊啊| 国产精品一区二区视频| 国产精品自拍一区| 国产主播精品在线| 在线不卡欧美| 日韩视频在线观看免费| 一二三四社区欧美黄| 亚洲午夜精品福利| 午夜精品久久久久久久久久久久| 午夜欧美理论片| 久久精品一区| 欧美国产激情二区三区| 欧美日韩mv| 国产精品一区在线播放| 国产欧美va欧美va香蕉在| 国产一区视频在线观看免费| 在线观看一区欧美| 99视频精品免费观看| 亚洲视频在线观看一区| 欧美在线观看视频| 欧美成人tv| 国产精品网站一区| 在线日韩av片| 亚洲香蕉网站| 久久久久综合一区二区三区| 欧美黄色视屏| 国产欧美日韩亚洲精品| 91久久精品一区二区别| 亚洲女同在线| 男女精品视频| 国产精品一区免费视频| 亚洲免费观看高清完整版在线观看熊 |