source: src/main/java/bargainingchips/players/history/BidEventHistoryKeeper.java@ 343

Last change on this file since 343 was 340, checked in by Tim Baarslag, 5 years ago

Change BilateralProtocol loop to avoid busy wait; note that this fixes only a part of the busy wait problem.

Package structure now in line with latest Acumex discussions.

Pinpointed error avoidance in Agent.

File size: 495 bytes
Line 
1package bargainingchips.players.history;
2
3import bargainingchips.Bundle;
4//import bargainingchips.actions.Bid;
5
6/**
7 * Adapted from {@link /NegotiatorGUI/src/main/java/agents/anac/y2011/Nice_Tit_for_Tat/BidHistoryKeeper.java}.
8 *
9 *
10 * @author Faria Nassiri-Mofakham
11 *
12 */
13public interface BidEventHistoryKeeper
14{
15 public BidEventHistory getOpponentHistory();
16
17 public Bundle getMyLastBid();
18
19 public Bundle getMySecondLastBid();
20
21 public Bundle getOpponentLastBid();
22}
Note: See TracBrowser for help on using the repository browser.