source: src/main/java/agents/BidPointSpace.java@ 209

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

Initial import : Genius 9.0.0

File size: 485 bytes
Line 
1package agents;
2
3import java.util.HashSet;
4
5import genius.core.Bid;
6import genius.core.analysis.BidPoint;
7
8/**
9 * Basically a set of BidPoints with extra functions.
10 *
11 * @author W.Pasman 4sep14
12 *
13 */
14public class BidPointSpace extends HashSet<BidPoint> {
15
16 /**
17 * Find bid that has smallest hamming distance to given bid.
18 *
19 * @param lastopponentbid
20 * @return
21 */
22 public BidPoint mostSimilar(Bid lastopponentbid) {
23 // TODO Auto-generated method stub
24 return null;
25 }
26
27}
Note: See TracBrowser for help on using the repository browser.