Class CompositePathOptimiser

    • Field Detail

      • MAX_FAILED_ATTEMPTS

        public static final int MAX_FAILED_ATTEMPTS
        Maximum number of consequent failed iterations that can be rejected. Up to 2 failed attempts are allowed.
        See Also:
        Constant Field Values
    • Constructor Detail

      • CompositePathOptimiser

        public CompositePathOptimiser()
    • Method Detail

      • iteration

        public boolean iteration​(GeneralTask task)
                          throws SolverException
        Description copied from class: PathOptimiser

        This method sets out the basic algorithm for estimating the minimum of the target function, which is defined as the sum of squared residuals (SSR), or the deviations of the model solution (a DifferenceScheme used to solve the Problem for this task) from the empirical values (the ExperimentalData). The algorithm will go through the following steps: (1) find the direction, which points to the minimum, using the concrete direction method; (2) estimate the magnitude of the step to reach the minimum using the LinearSolver; (3) assign a new set of parameters to the SearchTask; (4) calculate the new SSR value.

        Specified by:
        iteration in class PathOptimiser
        Parameters:
        task - a SearchTask that needs to be driven to a minimum of SSR.
        Returns:
        the SSR value with the newly found parameters.
        Throws:
        SolverException
        See Also:
        direction(Path), LinearOptimiser
      • setLinearSolver

        public void setLinearSolver​(LinearOptimiser linearSearch)
        Assigns a LinearSolver to this PathSolver and sets this object as its parent.
        Parameters:
        linearSearch - a LinearSolver
      • listedTypes

        public List<Property> listedTypes()
        Description copied from class: PropertyHolder

        By default, collects a list of default properties corresponding to types defined by listedKeywords(). However, this method is overridable to include non-numeric properties.

        Overrides:
        listedTypes in class PropertyHolder
        Returns:
        a list of Property instances, which have been explicitly marked as a listed parameter for this PropertyHolder.
      • initState

        public GradientGuidedPath initState​(GeneralTask t)
        Creates a new Path instance for storing the gradient, direction, and minimum point for this PathSolver.
        Specified by:
        initState in class PathOptimiser
        Parameters:
        t - the search task
        Returns:
        a Path instance