Last change
on this file since 126 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
485 bytes
|
Rev | Line | |
---|
[1] | 1 | package agents;
|
---|
| 2 |
|
---|
| 3 | import java.util.HashSet;
|
---|
| 4 |
|
---|
| 5 | import genius.core.Bid;
|
---|
| 6 | import genius.core.analysis.BidPoint;
|
---|
| 7 |
|
---|
| 8 | /**
|
---|
| 9 | * Basically a set of BidPoints with extra functions.
|
---|
| 10 | *
|
---|
| 11 | * @author W.Pasman 4sep14
|
---|
| 12 | *
|
---|
| 13 | */
|
---|
| 14 | public 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.