Last change
on this file since 256 was 202, checked in by Katsuhide Fujita, 6 years ago |
Add ANAC 2019 agents (3)
|
-
Property svn:executable
set to
*
|
File size:
527 bytes
|
Line | |
---|
1 | package agents.anac.y2019.fsega2019.fsegaoppmodel;
|
---|
2 |
|
---|
3 | import java.util.ArrayList;
|
---|
4 |
|
---|
5 | import genius.core.Bid;
|
---|
6 | import genius.core.Domain;
|
---|
7 |
|
---|
8 |
|
---|
9 | public abstract class OpponentModel
|
---|
10 | {
|
---|
11 | protected Domain dDomain;
|
---|
12 | protected Domain fDomain;
|
---|
13 | public ArrayList<Bid> fBiddingHistory;
|
---|
14 |
|
---|
15 | public Domain getDomain()
|
---|
16 | {
|
---|
17 | return dDomain;
|
---|
18 | }
|
---|
19 |
|
---|
20 | public abstract double getExpectedUtility(Bid pBid) throws Exception;
|
---|
21 |
|
---|
22 | public abstract void updateBeliefs(Bid pBid) throws Exception;
|
---|
23 |
|
---|
24 | public abstract double getExpectedWeight(int pIssueNumber);
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.