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:
397 bytes
|
Line | |
---|
1 | package agents.qoagent;
|
---|
2 |
|
---|
3 | import java.util.ArrayList;
|
---|
4 |
|
---|
5 | public class FullUtility
|
---|
6 | {
|
---|
7 | public double dTimeEffect;
|
---|
8 | public double dStatusQuoValue;
|
---|
9 | public double dOptOutValue;
|
---|
10 | public ArrayList<UtilityDetails> lstUtilityDetails; // list of UtilityDetails
|
---|
11 |
|
---|
12 | public FullUtility()
|
---|
13 | {
|
---|
14 | dTimeEffect = 0;
|
---|
15 | dStatusQuoValue = 0;
|
---|
16 | dOptOutValue = 0;
|
---|
17 | lstUtilityDetails = new ArrayList<UtilityDetails>();
|
---|
18 | }
|
---|
19 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.