Rev | Line | |
---|
[14] | 1 | package geniusweb.opponentmodel;
|
---|
| 2 |
|
---|
| 3 | import geniusweb.issuevalue.Bid;
|
---|
| 4 | import geniusweb.profile.Profile;
|
---|
| 5 | import geniusweb.profile.utilityspace.UtilitySpace;
|
---|
| 6 |
|
---|
| 7 | /**
|
---|
| 8 | * An opponentmodel estimates a {@link UtilitySpace} from received opponent
|
---|
| 9 | * bids.
|
---|
| 10 | */
|
---|
| 11 | public interface OpponentModel extends Profile {
|
---|
| 12 | /**
|
---|
| 13 | *
|
---|
| 14 | * @param bid the next bid that was received
|
---|
| 15 | * @return a new {@link OpponentModel} that takes the next bid into account.
|
---|
| 16 | */
|
---|
| 17 | OpponentModel update(Bid bid);
|
---|
| 18 |
|
---|
| 19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.