Last change
on this file since 203 was 127, checked in by Wouter Pasman, 6 years ago |
#41 ROLL BACK of rev.126 . So this version is equal to rev. 125
|
File size:
537 bytes
|
Line | |
---|
1 | package agents.bayesianopponentmodel;
|
---|
2 |
|
---|
3 |
|
---|
4 | import genius.core.utility.Evaluator;
|
---|
5 |
|
---|
6 | public class EvaluatorHypothesis extends Hypothesis {
|
---|
7 | private String fDesc;
|
---|
8 | private Evaluator fEval;
|
---|
9 |
|
---|
10 | public EvaluatorHypothesis (Evaluator pEval) {
|
---|
11 | fEval = pEval;
|
---|
12 | }
|
---|
13 | public Evaluator getEvaluator() {
|
---|
14 | return fEval;
|
---|
15 | }
|
---|
16 | public String toString() {
|
---|
17 | String lResult = "";
|
---|
18 | lResult += fDesc;
|
---|
19 | return lResult;
|
---|
20 | }
|
---|
21 | public void setDesc(String pValue) {
|
---|
22 | fDesc = pValue;
|
---|
23 | }
|
---|
24 |
|
---|
25 | public String getDesc() {
|
---|
26 | return fDesc;
|
---|
27 | }
|
---|
28 | }
|
---|
29 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.