Last change
on this file was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
411 bytes
|
Line | |
---|
1 | package agents.anac.y2010.AgentFSEGA;
|
---|
2 |
|
---|
3 | import genius.core.Bid;
|
---|
4 | import genius.core.Domain;
|
---|
5 |
|
---|
6 | public abstract class OpponentModel
|
---|
7 | {
|
---|
8 | protected Domain dDomain;
|
---|
9 |
|
---|
10 | public Domain getDomain()
|
---|
11 | {
|
---|
12 | return dDomain;
|
---|
13 | }
|
---|
14 |
|
---|
15 | public abstract double getExpectedUtility(Bid pBid) throws Exception;
|
---|
16 |
|
---|
17 | public abstract void updateBeliefs(Bid pBid) throws Exception;
|
---|
18 |
|
---|
19 | public abstract double getExpectedWeight(int pIssueNumber);
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.