Last change
on this file since 201 was 201, checked in by Katsuhide Fujita, 6 years ago |
Add ANAC 2019 agents (2)
|
-
Property svn:executable
set to
*
|
File size:
464 bytes
|
Line | |
---|
1 | package agents.anac.y2019.authenticagent.opponentmodeling;
|
---|
2 |
|
---|
3 | import genius.core.Bid;
|
---|
4 | import genius.core.uncertainty.UserModel;
|
---|
5 | import genius.core.utility.UtilitySpace;
|
---|
6 |
|
---|
7 | import java.util.ArrayList;
|
---|
8 |
|
---|
9 | public abstract class AbstractOpponentModeling{
|
---|
10 |
|
---|
11 | AbstractOpponentModeling(UtilitySpace us, UserModel um){
|
---|
12 | }
|
---|
13 |
|
---|
14 | public ArrayList<Bid> getRecommendedBids(){
|
---|
15 | return new ArrayList<>();
|
---|
16 | }
|
---|
17 | public void addNewOpponentIfNotExists(String agentId){}
|
---|
18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.