source: src/main/java/agents/rlboa/AbstractState.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: 225 bytes
Line 
1package agents.rlboa;
2
3public abstract class AbstractState {
4
5 public abstract boolean isInitialState();
6
7 public abstract boolean isTerminalState();
8
9 public abstract int hash();
10
11 public abstract int getActionSize();
12}
Note: See TracBrowser for help on using the repository browser.