Last change
on this file since 84 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
574 bytes
|
Line | |
---|
1 | package agents.anac.y2010.AgentFSEGA;
|
---|
2 |
|
---|
3 | import genius.core.utility.Evaluator;
|
---|
4 |
|
---|
5 | public class EvaluatorHypothesis extends Hypothesis
|
---|
6 | {
|
---|
7 | private Evaluator dEval;
|
---|
8 | private String sDescription;
|
---|
9 |
|
---|
10 | public EvaluatorHypothesis (Evaluator pEval, String pDescription)
|
---|
11 | {
|
---|
12 | dEval = pEval;
|
---|
13 | sDescription = pDescription;
|
---|
14 | }
|
---|
15 |
|
---|
16 | public Evaluator getEvaluator()
|
---|
17 | {
|
---|
18 | return dEval;
|
---|
19 | }
|
---|
20 |
|
---|
21 | public String getDescription()
|
---|
22 | {
|
---|
23 | return sDescription;
|
---|
24 | }
|
---|
25 |
|
---|
26 | public String toString()
|
---|
27 | {
|
---|
28 | return "Evaluator hypothesis " + sDescription + ": " + dEval.toString();
|
---|
29 | }
|
---|
30 | }
|
---|
31 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.