Package pulse.search

Class GeneralTask<I extends DiscreteInput,​R extends Response>

    • Constructor Detail

      • GeneralTask

        public GeneralTask()
    • Method Detail

      • searchVector

        public abstract ParameterVector searchVector()
        Creates a search vector populated by parameters that are included in the optimisation routine.
        Returns:
        the parameter vector with optimisation parameters
      • assign

        public abstract void assign​(ParameterVector pv)
                             throws SolverException
        Tries to assign a selected set of parameters to the search vector used in optimisation.
        Parameters:
        pv - a parameter vector containing all of the optimisation parameters whose values will be assigned to this task
        Throws:
        SolverException
      • run

        public void run()

        Runs this task if is either READY or QUEUED. Otherwise, will do nothing. After making some preparatory steps, will initiate a loop with successive calls to PathSolver.iteration(this), filling the buffer and notifying any data change listeners in parallel. This loop will go on until either converging results are obtained, or a timeout is reached, or if an execution error happens. Whether the run has been successful will be determined by comparing the associated R2 value with the SUCCESS_CUTOFF.

        Specified by:
        run in interface Runnable
      • isInProgress

        public abstract boolean isInProgress()
      • intermediateProcessing

        public void intermediateProcessing()
        Override this to add intermediate processing of results e.g. with a correlation test.
      • onSolverException

        public void onSolverException​(SolverException e1)
        Specifies what should be done when a solver exception is encountered. Empty by default
        Parameters:
        e1 - a solver exception
      • postProcessing

        public void postProcessing()
        Override this to add post-processing checks e.g. normality tests or range checking.
      • getBuffer

        public final Buffer getBuffer()
      • setIterativeState

        public void setIterativeState​(IterativeState state)
      • storeState

        public void storeState()
        Update the best state. The instance of this class stores two objects of the type IterativeState: the current state of the optimiser and the global best state. Calling this method will check if a new global best is found, and if so, this will store its parameters in the corresponding variable. This will then be used at the final stage of running the search task, comparing the converged result to the global best, and selecting whichever has the lowest cost. Such routine is required due to the possibility of some optimisers going uphill.
      • setOptimiser

        public final void setOptimiser​(PathOptimiser optimiser)
      • setDefaultOptimiser

        public void setDefaultOptimiser()
      • getInput

        public abstract I getInput()
      • getResponse

        public abstract R getResponse()