Package pulse.tasks

Class Calculation

    • Field Detail

    • 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

      • clear

        public void clear()
      • setProblem

        public void setProblem​(Problem problem,
                               ExperimentalData curve)

        After setting and adopting the problem by this SearchTask, this will attempt to change the parameters of that problem in accordance with the loaded ExperimentalData for this SearchTask (if not null).Later, if any changes to the properties of that Problem occur and if the source of that event is either the Metadata or the PropertyHolderTable, they will be accounted for by altering the parameters of the problem accordingly -- immediately after the former take place.

        Parameters:
        problem - a Problem
        curve -
      • setScheme

        public void setScheme​(DifferenceScheme scheme,
                              ExperimentalData curve)
        Adopts the scheme by this SearchTask and updates the time limit of scheme to match ExperimentalData.
        Parameters:
        scheme - the DiffenceScheme.
        curve -
      • process

        public void process()
                     throws SolverException
        This will use the current DifferenceScheme to solve the Problem for this Calculation.
        Throws:
        SolverException
      • getStatus

        public Status getStatus()
      • setStatus

        public boolean setStatus​(Status status)
        Attempts to set the status of this calculation to status.
        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 the status being set is QUEUED.
      • getProblem

        public Problem getProblem()
      • initOptimiser

        public void initOptimiser()
      • initModelCriterion

        protected void initModelCriterion​(Statistic res)
      • 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.
      • isBetterThan

        public boolean isBetterThan​(Calculation a)
        Checks if this Calculation is better than a.
        Parameters:
        a - another completed calculation
        Returns:
        true if another calculation hasn't been completed or if this calculation's statistic is lower than statistic of a.
      • compareTo

        public int compareTo​(Calculation arg0)
        Compares two calculations based on their model selection criteria.
        Specified by:
        compareTo in interface Comparable<Calculation>
        Parameters:
        arg0 - another calculation
        Returns:
        the result of comparing the model selection statistics of this and arg0.
      • getResult

        public Result getResult()
      • setResult

        public void setResult​(Result result)
      • evaluate

        public double evaluate​(double t)
        Specified by:
        evaluate in interface Response
      • objectiveFunction

        public double objectiveFunction​(GeneralTask task)
                                 throws SolverException
        This will use the current DifferenceScheme to solve the Problem for this SearchTask and calculate the SSR value showing how well (or bad) the calculated solution describes the ExperimentalData.
        Specified by:
        objectiveFunction in interface Response
        Parameters:
        task -
        Returns:
        the value of SSR (sum of squared residuals).
        Throws:
        SolverException
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object