source: src/main/java/agents/BayesianAgentNS.java@ 209

Last change on this file since 209 was 1, checked in by Wouter Pasman, 6 years ago

Initial import : Genius 9.0.0

File size: 414 bytes
Line 
1package agents;
2
3import agents.bayesianopponentmodel.BayesianOpponentModelScalable;
4import genius.core.utility.AdditiveUtilitySpace;
5
6public 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.