source: src/main/java/agents/qoagent/UtilityDetails.java@ 126

Last change on this file since 126 was 126, 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

Added input for strategyParameters to SessionPanel (gui)

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

Our own package:

  • 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: 683 bytes
Line 
1package agents.qoagent;
2
3import java.util.ArrayList;
4
5/*****************************************************************
6 * Class name: UtilityDetails
7 * Goal: This class holds several issues in an array of issues.
8 * All issues are under the same title which is saved in a string.
9 ****************************************************************/
10public class UtilityDetails
11{
12 public String sTitle;
13 public ArrayList<UtilityIssue> lstUtilityIssues; // list of UtilityIssue
14
15 //the constructor inits the title to an empty string, and the
16 //utility issues array to an empty array
17 public UtilityDetails()
18 {
19 sTitle = "";
20 lstUtilityIssues = new ArrayList<UtilityIssue>();
21 }
22}
Note: See TracBrowser for help on using the repository browser.