Package pulse.tasks.processing
Class Buffer
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.tasks.processing.Buffer
-
- All Implemented Interfaces:
Serializable
,Descriptive
public class Buffer extends PropertyHolder
ABuffer
is used to estimate the convergence of the reverse problem solution, by comparing the variance of the properties to a pre-specified error tolerance.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Buffer()
Creates aBuffer
with a default size.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description double
average(NumericPropertyKeyword index)
Calculates the average for theindex
-- if the respectiveNumericProperty
is contained in theIndexedVector
data of thisBuffer
.double
averageStatistic()
Calculates the average statistic valuevoid
fill(GeneralTask t, int bufferElement)
(Over)writes a buffer cell corresponding to thebufferElement
with the current set of parameters ofSearchTask
and the search statistic.ParameterVector[]
getData()
Retrieves the contents of thisBuffer
.static NumericProperty
getSize()
Gets the buffer size (a NumericProperty derived fromBUFFER_SIZE
.void
init()
boolean
isErrorTooHigh(double errorTolerance)
Determines whether the relative error (variance divided by mean) for any of the properties in this buffer is higher than the expecterrorTolerance
.List<Property>
listedTypes()
TheBUFFER_SIZE
is the single listed parameter for this class.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
.static void
setSize(NumericProperty newSize)
Sets a new size for thisBuffer
.double
variance(NumericPropertyKeyword index)
Calculates the variance for theindex
-- if the respectiveNumericProperty
is contained in theIndexedVector
data of thisBuffer
.-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, ignoreSiblings, initListeners, isListedNumericType, isListedParameter, listedKeywords, 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
-
-
-
-
Method Detail
-
getData
public ParameterVector[] getData()
Retrieves the contents of thisBuffer
.- Returns:
- the data
-
init
public final void init()
-
fill
public final void fill(GeneralTask t, int bufferElement)
(Over)writes a buffer cell corresponding to thebufferElement
with the current set of parameters ofSearchTask
and the search statistic.- Parameters:
t
- theSearchTask
bufferElement
- thebufferElement
which will be written over
-
isErrorTooHigh
public boolean isErrorTooHigh(double errorTolerance)
Determines whether the relative error (variance divided by mean) for any of the properties in this buffer is higher than the expecterrorTolerance
.- Parameters:
errorTolerance
- the maximum tolerated relative error.- Returns:
true
if convergence has not been reached.
-
average
public double average(NumericPropertyKeyword index)
Calculates the average for theindex
-- if the respectiveNumericProperty
is contained in theIndexedVector
data of thisBuffer
.- Parameters:
index
- a symbolic index (keyword)- Returns:
- the mean of the data sample for the specific type of
NumericPropert
ies
-
averageStatistic
public double averageStatistic()
Calculates the average statistic value- Returns:
- the mean statistic value.
-
variance
public double variance(NumericPropertyKeyword index)
Calculates the variance for theindex
-- if the respectiveNumericProperty
is contained in theIndexedVector
data of thisBuffer
.- Parameters:
index
- a symbolic index (keyword).- Returns:
- the variance of the data sample for the specific type of
NumericPropert
ies.
-
getSize
public static NumericProperty getSize()
Gets the buffer size (a NumericProperty derived fromBUFFER_SIZE
.- Returns:
- the buffer size property
- See Also:
NumericPropertyKeyword
-
setSize
public static void setSize(NumericProperty newSize)
Sets a new size for thisBuffer
.- Parameters:
newSize
- aNumericProperty
of the typeBUFFER_SIZE
.
-
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.
-
listedTypes
public List<Property> listedTypes()
TheBUFFER_SIZE
is the single listed parameter for this class.- Overrides:
listedTypes
in classPropertyHolder
- Returns:
- a list of
Property
instances, which have been explicitly marked as a listed parameter for thisPropertyHolder
. - See Also:
NumericPropertyKeyword
-
-