source: src/main/java/genius/core/boaframework/NoModel.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: 540 bytes
Line 
1package genius.core.boaframework;
2
3import genius.core.Bid;
4
5/**
6 * Placeholder to notify an agent that there is no opponent model available.
7 *
8 * Tim Baarslag, Koen Hindriks, Mark Hendrikx, Alex Dirkzwager and Catholijn M. Jonker.
9 * Decoupling Negotiating Agents to Explore the Space of Negotiation Strategies
10 *
11 * @author Mark Hendrikx
12 */
13public class NoModel extends OpponentModel {
14
15
16 public void updateModel(Bid opponentBid, double time) { }
17
18 @Override
19 public String getName() {
20 return "No Model";
21 }
22}
Note: See TracBrowser for help on using the repository browser.