User Tools

Site Tools


public:t-622-arti-13-1:prog2

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:t-622-arti-13-1:prog2 [2013/02/21 08:42] – [Handing In] stephanpublic:t-622-arti-13-1:prog2 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 40: Line 40:
   * You have to implement the methods "init" and "nextAction". "init" will be called once at the start and should be used to initialize the agent. You will get the information, which role your agent is playing (white or red) and how much time the agent has for computing each move. "nextAction" gets the previous move as input and has to return the next action the agent is supposed to execute within the given time limit. "nextAction" is called for every step of the game. If it is not your players turn return "NOOP".   * You have to implement the methods "init" and "nextAction". "init" will be called once at the start and should be used to initialize the agent. You will get the information, which role your agent is playing (white or red) and how much time the agent has for computing each move. "nextAction" gets the previous move as input and has to return the next action the agent is supposed to execute within the given time limit. "nextAction" is called for every step of the game. If it is not your players turn return "NOOP".
   * **Make sure your agent is able to play both roles (white and red)!**   * **Make sure your agent is able to play both roles (white and red)!**
-  * You can make sure to be on time by regularly checking whether there is time left during the search process and stopping the search just before you run out of time.+  * You can make sure to be on time by regularly checking whether there is time left during the search process and stopping the search just before you run out of time, e.g., by throwing an exception that you catch where you call the search function the first time. 
 +  * To specify the port your agent is running on change the build.xml file as follows and use the command line ''ant -Darg0=PORT run'' with PORT being the port number: 
 +<file xml build.xml> 
 +      ... 
 +      <target name="run" depends="dist"> 
 +              <java jar="${dist}/${projectname}.jar" fork="true"> 
 +                      <arg value="${arg0}"/> <!-- add this line here! --> 
 +                      <jvmarg value="-Xmx500m" /> 
 +              </java>         
 +              <antcall target="clean" /> 
 +      </target> 
 +      ... 
 +</file> 
  
 ===== Handing In ===== ===== Handing In =====
Line 51: Line 64:
 The deadline is Friday, 01.03.2013 for source code and executable player and Monday, 04.03.2013 for the report. We will have a tournament between your agents in the lab on Thursday, 07.03.2013. Extra points for the top players! The deadline is Friday, 01.03.2013 for source code and executable player and Monday, 04.03.2013 for the report. We will have a tournament between your agents in the lab on Thursday, 07.03.2013. Extra points for the top players!
  
-/* You can watch the tournament [[http://130.208.241.192/ggpserver/public/view_tournament.jsp?tournamentID=ru-ai2013-connect4|here]]. +You can watch the tournament [[http://130.208.241.192/ggpserver/public/view_tournament.jsp?tournamentID=ru_arti13_connect4|here]]. 
-*/+
  
 As with the first programming assignment, you can still hand in after the deadline (by email), but your grade will be lowered by 0.5 for each day your submission is late. Also, you can't get the extra points for being good in the tournament. As with the first programming assignment, you can still hand in after the deadline (by email), but your grade will be lowered by 0.5 for each day your submission is late. Also, you can't get the extra points for being good in the tournament.
  
/var/www/cadia.ru.is/wiki/data/attic/public/t-622-arti-13-1/prog2.1361436140.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki