source: src/main/java/agents/bayesianopponentmodel/Hypothesis.java

Last change on this file 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: 258 bytes
Line 
1package agents.bayesianopponentmodel;
2
3public class Hypothesis {
4 private double fProbability;
5
6 public double getProbability() {
7 return fProbability;
8 }
9
10 public void setProbability(double probability) {
11 fProbability = probability;
12 }
13
14}
Note: See TracBrowser for help on using the repository browser.