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