source: src/main/java/negotiator/boaframework/acceptanceconditions/other/AC_False.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 800 bytes
Line 
1package negotiator.boaframework.acceptanceconditions.other;
2
3import genius.core.boaframework.AcceptanceStrategy;
4import genius.core.boaframework.Actions;
5
6/**
7 * This Acceptance Condition never accepts an opponent offer.
8 *
9 * Decoupling Negotiating Agents to Explore the Space of Negotiation Strategies
10 * T. Baarslag, K. Hindriks, M. Hendrikx, A. Dirkzwager, C.M. Jonker
11 *
12 * @author Alex Dirkzwager, Mark Hendrikx
13 * @version 18/12/11
14 */
15public class AC_False extends AcceptanceStrategy {
16
17 /**
18 * Empty constructor for the BOA framework.
19 */
20 public AC_False() {
21 }
22
23 /**
24 * @return reject any bid.
25 */
26 @Override
27 public Actions determineAcceptability() {
28 return Actions.Reject;
29 }
30
31 @Override
32 public String getName() {
33 return "Other - False";
34 }
35}
Note: See TracBrowser for help on using the repository browser.