source:
src/main/java/agents/anac/y2017/tucagent/Hypothesis.java
Last change on this file was 1, checked in by , 6 years ago | |
---|---|
File size: 267 bytes |
Line | |
---|---|
1 | package agents.anac.y2017.tucagent; |
2 | |
3 | public class Hypothesis { |
4 | private double fProbability; |
5 | |
6 | public Hypothesis() { |
7 | } |
8 | |
9 | public double getProbability() { |
10 | return fProbability; |
11 | } |
12 | |
13 | public void setProbability(double probability) { |
14 | fProbability = probability; |
15 | } |
16 | } |
Note:
See TracBrowser
for help on using the repository browser.