Uses of Class
pulse.tasks.processing.AbstractResult
-
Packages that use AbstractResult Package Description pulse.tasks.processing Lists classes for storing runtime information, storing and ordering of final execution results, storing intermediate results of execution to check convergence.pulse.ui.components.models -
-
Uses of AbstractResult in pulse.tasks.processing
Subclasses of AbstractResult in pulse.tasks.processing Modifier and Type Class Description class
AverageResult
AnAverageResult
is obtained by averaging a list ofAbstractResult
s and calculating the associated errors of averaging.class
Result
The individualResult
that is associated with aSearchTask
.Methods in pulse.tasks.processing that return types with arguments of type AbstractResult Modifier and Type Method Description List<AbstractResult>
AverageResult. getIndividualResults()
This will analyse the list ofAbstractResult
s used for calculation of the mean and find all associated individual results.Methods in pulse.tasks.processing with parameters of type AbstractResult Modifier and Type Method Description static List<NumericProperty>
AbstractResult. filterProperties(AbstractResult result)
A static method for filtering the properties contained in theresult
to choose only those that conform to itsformat
.static List<NumericProperty>
AbstractResult. filterProperties(AbstractResult result, ResultFormat format)
A static method for filtering the properties contained in theresult
to choose only those that conform to theformat
.Constructors in pulse.tasks.processing with parameters of type AbstractResult Constructor Description AbstractResult(AbstractResult r)
Constructor parameters in pulse.tasks.processing with type arguments of type AbstractResult Constructor Description AverageResult(List<AbstractResult> res, ResultFormat resultFormat)
This will create anAverageResult
based on theAbstractResult
inres
. -
Uses of AbstractResult in pulse.ui.components.models
Methods in pulse.ui.components.models that return types with arguments of type AbstractResult Modifier and Type Method Description List<AbstractResult>
ResultTableModel. getResults()
List<AbstractResult>
ResultTableModel. group(List<AbstractResult> listOfResults, AbstractResult r, double propertyInterval)
Takes a list of results, which should be mandatory sorted in the order of ascending id values, and searches for those results that can be merged withr
, satisfying these criteria: (a) these results correspond to test temperatures within a specifiedtemperatureDelta
(b) they form a single sequence of measurementsMethods in pulse.ui.components.models with parameters of type AbstractResult Modifier and Type Method Description void
ResultTableModel. addRow(AbstractResult result)
List<AbstractResult>
ResultTableModel. group(List<AbstractResult> listOfResults, AbstractResult r, double propertyInterval)
Takes a list of results, which should be mandatory sorted in the order of ascending id values, and searches for those results that can be merged withr
, satisfying these criteria: (a) these results correspond to test temperatures within a specifiedtemperatureDelta
(b) they form a single sequence of measurementsvoid
ResultTableModel. remove(AbstractResult r)
Method parameters in pulse.ui.components.models with type arguments of type AbstractResult Modifier and Type Method Description List<AbstractResult>
ResultTableModel. group(List<AbstractResult> listOfResults, AbstractResult r, double propertyInterval)
Takes a list of results, which should be mandatory sorted in the order of ascending id values, and searches for those results that can be merged withr
, satisfying these criteria: (a) these results correspond to test temperatures within a specifiedtemperatureDelta
(b) they form a single sequence of measurements
-