Uses of Class
net.sf.tweety.math.probability.Probability
-
Packages that use Probability Package Description net.sf.tweety.math.probability -
-
Uses of Probability in net.sf.tweety.math.probability
Fields in net.sf.tweety.math.probability declared as Probability Modifier and Type Field Description static ProbabilityProbability. ONEConstant for probability 1static ProbabilityProbability. ZEROConstant for probability 0Methods in net.sf.tweety.math.probability that return Probability Modifier and Type Method Description ProbabilityProbability. add(Probability other)Computes the sum of this and the given probability.ProbabilityProbability. complement()Returns the complement of this probability, i.e.ProbabilityProbability. divide(Double other)Divides this probability by given value returns the result.ProbabilityProbability. divide(Probability other)Divides this probability by other and returns the result.ProbabilityProbabilityFunction. get(Object key)ProbabilityProbability. mult(Double other)Computes the product of this probability and the given number.ProbabilityProbability. mult(Integer other)Computes the product of this probability and the given number.ProbabilityProbability. mult(Probability other)Computes the product of this probability and the given probability.ProbabilityProbabilityFunction. probability(Collection<? extends T> objects)Gets the probability of the given object.ProbabilityProbabilityFunction. probability(T w)Gets the probability of the given object.ProbabilityProbabilityFunction. put(T key, Probability value)ProbabilityProbabilityFunction. remove(Object key)Methods in net.sf.tweety.math.probability that return types with arguments of type Probability Modifier and Type Method Description Set<Map.Entry<T,Probability>>ProbabilityFunction. entrySet()Vector<Probability>ProbabilityFunction. getProbabilityVector()Returns the vector of probabilities, depending on the order of the domain elements (which can be ordered as they implement Comparable).Collection<Probability>ProbabilityFunction. values()Methods in net.sf.tweety.math.probability with parameters of type Probability Modifier and Type Method Description ProbabilityProbability. add(Probability other)Computes the sum of this and the given probability.ProbabilityProbability. divide(Probability other)Divides this probability by other and returns the result.booleanProbability. isWithinTolerance(Probability other)Checks whether the given probability is "nearly" the same as this probability (given the actual precision).ProbabilityProbability. mult(Probability other)Computes the product of this probability and the given probability.ProbabilityProbabilityFunction. put(T key, Probability value)Method parameters in net.sf.tweety.math.probability with type arguments of type Probability Modifier and Type Method Description voidProbabilityFunction. putAll(Map<? extends T,? extends Probability> m)Constructors in net.sf.tweety.math.probability with parameters of type Probability Constructor Description Probability(Probability other)Creates a new probability from the given probability
-