Class AnalysisResult
java.lang.Object
org.tweetyproject.arg.bipolar.analysis.AnalysisResult
A record for storing analysis of the results
- Author:
- Taha Dogan Gunes
-
Field Summary
FieldsModifier and TypeFieldDescriptionlong
double
double
-
Constructor Summary
ConstructorsConstructorDescriptionAnalysisResult
(double result, long noIterations, AnalysisType type, double totalProbability) -
Method Summary
Modifier and TypeMethodDescriptionlong
Returns the number of iterationsdouble
Returns the result of the analysisvoid
print()
For debugging purposes, prints the analysis result.
-
Field Details
-
result
public double result -
noIterations
public long noIterations -
type
-
totalProbability
public double totalProbability
-
-
Constructor Details
-
AnalysisResult
-
-
Method Details
-
getResult
public double getResult()Returns the result of the analysis- Returns:
- the result
-
getNoIterations
public long getNoIterations()Returns the number of iterations- Returns:
- the number of iterations
-
print
public void print()For debugging purposes, prints the analysis result.
-