Uses of Class
org.tweetyproject.math.probability.ProbabilityFunction
Packages that use ProbabilityFunction
Package
Description
-
Uses of ProbabilityFunction in org.tweetyproject.agents.dialogues.oppmodels
Constructors in org.tweetyproject.agents.dialogues.oppmodels with parameters of type ProbabilityFunctionModifierConstructorDescriptionT2BeliefState
(Extension<DungTheory> knownArguments, UtilityFunction<Argument, Extension<DungTheory>> utilityFunction, ProbabilityFunction<T2BeliefState> prob) Creates a new T2-belief-state with the given parameters.T3BeliefState
(Extension<DungTheory> knownArguments, UtilityFunction<Argument, Extension<DungTheory>> utilityFunction, Set<Argument> virtualArguments, Set<Attack> virtualAttacks, RecognitionFunction rec, ProbabilityFunction<T3BeliefState> prob) Creates a new T3-belief-state with the given parameters. -
Uses of ProbabilityFunction in org.tweetyproject.arg.prob.lotteries
Subclasses of ProbabilityFunction in org.tweetyproject.arg.prob.lotteriesModifier and TypeClassDescriptionclass
Represents a probability function on the subgraphs of some Dung theory. -
Uses of ProbabilityFunction in org.tweetyproject.arg.prob.semantics
Subclasses of ProbabilityFunction in org.tweetyproject.arg.prob.semanticsModifier and TypeClassDescriptionclass
This class implements a probabilistic interpretation for Dung argumentation frameworks, cf. -
Uses of ProbabilityFunction in org.tweetyproject.logics.petri.syntax.reachability_graph
Methods in org.tweetyproject.logics.petri.syntax.reachability_graph that return ProbabilityFunctionModifier and TypeMethodDescriptionReachabilityGraph.getProbabilityFunction()
the probability function of this graph, which is null for defaultMethods in org.tweetyproject.logics.petri.syntax.reachability_graph with parameters of type ProbabilityFunctionModifier and TypeMethodDescriptionvoid
ReachabilityGraph.setProbabilityFunction
(ProbabilityFunction<MarkingEdge> probabilityFunction) sets the probability function of this graph -
Uses of ProbabilityFunction in org.tweetyproject.logics.pl.util
Methods in org.tweetyproject.logics.pl.util with parameters of type ProbabilityFunctionModifier and TypeMethodDescriptionSyntacticRandomSampler.sampleFormula
(ProbabilityFunction<Byte> prob) Samples a single formula. -
Uses of ProbabilityFunction in org.tweetyproject.math.norm
Methods in org.tweetyproject.math.norm with parameters of type ProbabilityFunctionModifier and TypeMethodDescriptiondouble
EntropyNorm.distance
(ProbabilityFunction<T> prob1, ProbabilityFunction<T> prob2) distance between problemsdouble
EntropyNorm.norm
(ProbabilityFunction<T> prob) norm -
Uses of ProbabilityFunction in org.tweetyproject.math.probability
Methods in org.tweetyproject.math.probability that return ProbabilityFunctionModifier and TypeMethodDescriptionstatic <S extends Comparable<S>>
ProbabilityFunction<S>ProbabilityFunction.convexCombination
(double[] factors, ProbabilityFunction<S>[] creators) Computes the convex combination of the given probability distributions P1,...,PN with parameters factors, i.e.ProbabilityFunction.convexCombination
(double d, ProbabilityFunction<T> other) Computes the convex combination of this P1 and the given probability distribution P2 with parameter d, i.e.static <S extends Comparable<S>>
ProbabilityFunction<S>ProbabilityFunction.getUniformDistribution
(Set<S> objects) Returns the uniform distribution on the given interpretations.ProbabilityFunction.linearCombination
(double d1, double d2, ProbabilityFunction<T> other) Makes a linear combination of this distribution "p1" and the given distribution "other" and the given parameters, i.e.Methods in org.tweetyproject.math.probability with parameters of type ProbabilityFunctionModifier and TypeMethodDescriptionstatic <S extends Comparable<S>>
ProbabilityFunction<S>ProbabilityFunction.convexCombination
(double[] factors, ProbabilityFunction<S>[] creators) Computes the convex combination of the given probability distributions P1,...,PN with parameters factors, i.e.ProbabilityFunction.convexCombination
(double d, ProbabilityFunction<T> other) Computes the convex combination of this P1 and the given probability distribution P2 with parameter d, i.e.ProbabilityFunction.linearCombination
(double d1, double d2, ProbabilityFunction<T> other) Makes a linear combination of this distribution "p1" and the given distribution "other" and the given parameters, i.e.Constructors in org.tweetyproject.math.probability with parameters of type ProbabilityFunctionModifierConstructorDescriptionProbabilityFunction
(ProbabilityFunction<T> other) Creates a new probability function by copying the given one.