source: src/main/java/agents/ai2014/group11/BidDetailsWithNash.java@ 1

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

Initial import : Genius 9.0.0

File size: 710 bytes
Line 
1package agents.ai2014.group11;
2
3import genius.core.Bid;
4import genius.core.bidding.BidDetails;
5
6/**
7 * Wrapper object for a Bid and its estimated Nash Product value
8 *
9 * Using the methods of the well-known BidDetails
10 */
11public class BidDetailsWithNash extends BidDetails {
12 private static final long serialVersionUID = 5739523536737751055L;
13
14 public BidDetailsWithNash(Bid bid, double nashProduct) {
15 super(bid, nashProduct);
16 }
17
18 public BidDetailsWithNash(Bid bid, double nashProduct, double time) {
19 super(bid, nashProduct, time);
20 }
21
22 /**
23 * Get the Nash value from this Bid
24 * @return
25 */
26 public double getEstimatedNashValue() {
27 return getMyUndiscountedUtil();
28 }
29}
Note: See TracBrowser for help on using the repository browser.