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 | |
---|
1 | package bargainingchips.players.history;
|
---|
2 |
|
---|
3 | import 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 | */
|
---|
13 | public 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.