source: src/main/java/agents/rlboa/BinnedRepresentation.java

Last change on this file was 153, checked in by Aron Hammond, 6 years ago

Added function to calculate opposition to MultiLateralAnalysis.java

Moved code to add RLBOA listeners to RLBOAUtils is misc package

!! close SessionInfo after tournament; this caused /tmp/ to fill up with GeniusData files

This commit finalized the RLBOA project and it is now ready for use

Our own package (uva.project.:

  • Moved to agents.rlboa
  • Added opponents and strategies that are mentioned in the report
  • Change class hierarchy, agents can now extend from RLBOAagentBilateral to inherit RL functionality.
  • States extend from AbstractState
File size: 114 bytes
Line 
1package agents.rlboa;
2
3public interface BinnedRepresentation {
4 public int getMyBin();
5 public int getOppBin();
6}
Note: See TracBrowser for help on using the repository browser.