Last change
on this file since 1 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
414 bytes
|
Rev | Line | |
---|
[1] | 1 | package agents;
|
---|
| 2 |
|
---|
| 3 | import agents.bayesianopponentmodel.BayesianOpponentModelScalable;
|
---|
| 4 | import genius.core.utility.AdditiveUtilitySpace;
|
---|
| 5 |
|
---|
| 6 | public class BayesianAgentNS extends BayesianAgent {
|
---|
| 7 |
|
---|
| 8 | @Override
|
---|
| 9 | public String getName() {
|
---|
| 10 | return "Bayesian Scalable";
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | @Override
|
---|
| 14 | protected void prepareOpponentModel() {
|
---|
| 15 | fOpponentModel = new BayesianOpponentModelScalable(
|
---|
| 16 | (AdditiveUtilitySpace) utilitySpace);
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.