source: boa/src/main/java/geniusweb/boa/acceptancestrategy/AcceptanceStrategy.java@ 16

Last change on this file since 16 was 16, checked in by bart, 4 years ago

Enhanced tournament runner

File size: 374 bytes
Line 
1package geniusweb.boa.acceptancestrategy;
2
3import geniusweb.boa.NegoState;
4import geniusweb.issuevalue.Bid;
5
6public interface AcceptanceStrategy {
7
8 /**
9 *
10 * @param bid the bid to be checked
11 * @param negoState the current {@link NegoState}
12 * @return true iff current bid is acceptable at this moment
13 */
14 Boolean isAcceptable(Bid bid, NegoState negoState);
15}
Note: See TracBrowser for help on using the repository browser.