Class Calculation
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.tasks.Calculation
-
- All Implemented Interfaces:
Serializable
,Comparable<Calculation>
,Response
,Descriptive
public class Calculation extends PropertyHolder implements Comparable<Calculation>, Response
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static double
RELATIVE_TIME_MARGIN
-
Constructor Summary
Constructors Constructor Description Calculation(Calculation c)
Creates an orphan Calculation, retaining some properties of the argumentCalculation(SearchTask t)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Segment
accessibleRange()
void
clear()
int
compareTo(Calculation arg0)
Compares two calculations based on their model selection criteria.void
conformTo(UpwardsNavigable owner)
boolean
equals(Object obj)
double
evaluate(double t)
ModelSelectionCriterion
getModelSelectionCriterion()
static InstanceDescriptor<? extends ModelSelectionCriterion>
getModelSelectionDescriptor()
OptimiserStatistic
getOptimiserStatistic()
Problem
getProblem()
Result
getResult()
DifferenceScheme
getScheme()
Status
getStatus()
int
hashCode()
protected void
initModelCriterion(Statistic res)
void
initOptimiser()
boolean
isBetterThan(Calculation a)
Checks if thisCalculation
is better thana
.double
objectiveFunction(GeneralTask task)
This will use the currentDifferenceScheme
to solve theProblem
for thisSearchTask
and calculate the SSR value showing how well (or bad) the calculated solution describes theExperimentalData
.void
process()
This will use the currentDifferenceScheme
to solve theProblem
for thisCalculation
.void
set(NumericPropertyKeyword type, NumericProperty property)
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)NumericPropert
ies in subclasses ofAccessible
.void
setModelSelectionCriterion(ModelSelectionCriterion rs)
void
setOptimiserStatistic(OptimiserStatistic os)
void
setProblem(Problem problem, ExperimentalData curve)
After setting and adopting theproblem
by thisSearchTask
, this will attempt to change the parameters of thatproblem
in accordance with the loadedExperimentalData
for thisSearchTask
(if not null).Later, if any changes to the properties of thatProblem
occur and if the source of that event is either theMetadata
or thePropertyHolderTable
, they will be accounted for by altering the parameters of theproblem
accordingly -- immediately after the former take place.void
setResult(Result result)
void
setScheme(DifferenceScheme scheme, ExperimentalData curve)
Adopts thescheme
by thisSearchTask
and updates the time limit ofscheme
to matchExperimentalData
.boolean
setStatus(Status status)
Attempts to set the status of this calculation tostatus
.NumericProperty
weight(List<Calculation> all)
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedKeywords, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperties, genericProperty, numericProperties, numericProperty, property, update, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Field Detail
-
RELATIVE_TIME_MARGIN
public static final double RELATIVE_TIME_MARGIN
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Calculation
public Calculation(SearchTask t)
-
Calculation
public Calculation(Calculation c)
Creates an orphan Calculation, retaining some properties of the argument- Parameters:
c
- another calculation to be archived.
-
-
Method Detail
-
conformTo
public void conformTo(UpwardsNavigable owner)
-
clear
public void clear()
-
setProblem
public void setProblem(Problem problem, ExperimentalData curve)
After setting and adopting the
problem
by thisSearchTask
, this will attempt to change the parameters of thatproblem
in accordance with the loadedExperimentalData
for thisSearchTask
(if not null).Later, if any changes to the properties of thatProblem
occur and if the source of that event is either theMetadata
or thePropertyHolderTable
, they will be accounted for by altering the parameters of theproblem
accordingly -- immediately after the former take place.- Parameters:
problem
- aProblem
curve
-
-
setScheme
public void setScheme(DifferenceScheme scheme, ExperimentalData curve)
Adopts thescheme
by thisSearchTask
and updates the time limit ofscheme
to matchExperimentalData
.- Parameters:
scheme
- theDiffenceScheme
.curve
-
-
process
public void process() throws SolverException
This will use the currentDifferenceScheme
to solve theProblem
for thisCalculation
.- Throws:
SolverException
-
getStatus
public Status getStatus()
-
setStatus
public boolean setStatus(Status status)
Attempts to set the status of this calculation tostatus
.- Parameters:
status
- a status- Returns:
true
if this attempt is successful, including the case when the status being set is equal to the current status.false
if the current status is one of the following:DONE
,EXECUTION_ERROR
,INCOMPLETE
,IN_PROGRES
, AND thestatus
being set isQUEUED
.
-
weight
public NumericProperty weight(List<Calculation> all)
-
setModelSelectionCriterion
public void setModelSelectionCriterion(ModelSelectionCriterion rs)
-
getModelSelectionCriterion
public ModelSelectionCriterion getModelSelectionCriterion()
-
setOptimiserStatistic
public void setOptimiserStatistic(OptimiserStatistic os)
-
getOptimiserStatistic
public OptimiserStatistic getOptimiserStatistic()
- Specified by:
getOptimiserStatistic
in interfaceResponse
-
getProblem
public Problem getProblem()
-
initOptimiser
public void initOptimiser()
-
initModelCriterion
protected void initModelCriterion(Statistic res)
-
getScheme
public DifferenceScheme getScheme()
-
set
public void set(NumericPropertyKeyword type, NumericProperty property)
Description copied from class:Accessible
An abstract method, which must be overriden to gain access over setting the values of all relevant (selected by the programmer)
NumericPropert
ies in subclasses ofAccessible
. Typically this involves aswitch
statement that goes through the different options for thetype
and invokes differentset(...)
methods to update the matchingNumericProperty
withproperty
.- Specified by:
set
in classAccessible
- Parameters:
type
- the type, which must be equal by definition toproperty.getType()
.property
- the property, which contains new information.
-
isBetterThan
public boolean isBetterThan(Calculation a)
Checks if thisCalculation
is better thana
.- Parameters:
a
- another completed calculation- Returns:
true
if another calculation hasn't been completed or if this calculation's statistic is lower than statistic ofa
.
-
compareTo
public int compareTo(Calculation arg0)
Compares two calculations based on their model selection criteria.- Specified by:
compareTo
in interfaceComparable<Calculation>
- Parameters:
arg0
- another calculation- Returns:
- the result of comparing the model selection statistics of
this
andarg0
.
-
getModelSelectionDescriptor
public static InstanceDescriptor<? extends ModelSelectionCriterion> getModelSelectionDescriptor()
-
getResult
public Result getResult()
-
setResult
public void setResult(Result result)
-
accessibleRange
public Segment accessibleRange()
- Specified by:
accessibleRange
in interfaceResponse
-
objectiveFunction
public double objectiveFunction(GeneralTask task) throws SolverException
This will use the currentDifferenceScheme
to solve theProblem
for thisSearchTask
and calculate the SSR value showing how well (or bad) the calculated solution describes theExperimentalData
.- Specified by:
objectiveFunction
in interfaceResponse
- Parameters:
task
-- Returns:
- the value of SSR (sum of squared residuals).
- Throws:
SolverException
-
-