Last change
on this file since 127 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:
475 bytes
|
Line | |
---|
1 | package agents.bayesianopponentmodel;
|
---|
2 |
|
---|
3 | import genius.core.Domain;
|
---|
4 |
|
---|
5 | public class WeightHypothesis2 extends Hypothesis {
|
---|
6 | double fWeight;
|
---|
7 | // double fAprioriProbability;
|
---|
8 | public WeightHypothesis2 (Domain pDomain) {
|
---|
9 |
|
---|
10 | }
|
---|
11 | public void setWeight( double value) {
|
---|
12 | fWeight = value;
|
---|
13 | }
|
---|
14 | public double getWeight() {
|
---|
15 | return fWeight;
|
---|
16 | }
|
---|
17 | public String toString() {
|
---|
18 | String lResult = "";
|
---|
19 | lResult = String.format("%1.2f", fWeight) +";";
|
---|
20 | return lResult;
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.