Class LinearOptimiser

    • Field Detail

      • searchResolution

        protected static double searchResolution
    • Constructor Detail

      • LinearOptimiser

        protected LinearOptimiser()
    • Method Detail

      • linearStep

        public abstract double linearStep​(GeneralTask task)
                                   throws SolverException
        Finds the minimum of the target function on the domain Segment.
        Parameters:
        task - the target function is the sum of squared residuals (SSR) for this task
        Returns:
        a double, representing the step magnitude that needs to be multiplied by the direction of the search determined previously using the PathSolver to arrive at the next set of parameters corresponding to a lower SSR value of this task
        Throws:
        SolverException
      • domain

        public static Segment domain​(ParameterVector x,
                                     Vector p)
        Sets the domain for this linear search on p.

        The domain is defined as a Segment [0; max], where max determines the maximum magnitude of the linearStep. This value is calculated initially as max = 0.5*xi/pi, where i is the index of the DIFFUSIVITY NumericProperty. Later it is corrected to ensure that the change in the HEAT_LOSS NumericProperty is less than unity.

        Parameters:
        x - the current set of parameter
        p - the result of the direction search with the PathSolver
        Returns:
        a Segment defining the domain of this search
      • getLinearResolution

        public static NumericProperty getLinearResolution()

        The linear resolution determines the minimum distance between any two points belonging to the domain of this search while they still are considered separate. In case of a partitioning method, e.g. the golden-section search, this determines the partitioning limit. Note different PathSolvers can have different sensitivities to the linear search and may require different linear resolutions to work effectively.

        Returns:
        a NumericProperty with the current value of the linear resolution
        See Also:
        domain(IndexedVector,IndexedVector,Vector)
      • setLinearResolution

        public static void setLinearResolution​(NumericProperty searchError)
      • 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) NumericProperties in subclasses of Accessible. Typically this involves a switch statement that goes through the different options for the type and invokes different set(...) methods to update the matching NumericProperty with property.

        Specified by:
        set in class Accessible
        Parameters:
        type - the type, which must be equal by definition to property.getType().
        property - the property, which contains new information.