source: src/main/java/negotiator/parties/BoulwareNegotiationParty.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: 250 bytes
Line 
1package negotiator.parties;
2
3public class BoulwareNegotiationParty
4 extends AbstractTimeDependentNegotiationParty {
5
6 @Override
7 public double getE() {
8 return 0.2;
9 }
10
11 @Override
12 public String getDescription() {
13 return "Time-based agent";
14 }
15}
Note: See TracBrowser for help on using the repository browser.