Class OptimisablePolyline

    • Constructor Detail

      • OptimisablePolyline

        public OptimisablePolyline​(List<Point2D> data)
    • Method Detail

      • assign

        public void assign​(ParameterVector input)
                    throws SolverException
        Description copied from interface: Optimisable
        Assigns parameter values of this Optimisable using the optimisation vector params. Only those parameters will be updated, the types of which are listed as indices in the params vector.
        Specified by:
        assign in interface Optimisable
        Parameters:
        input - the optimisation vector, containing a similar set of parameters to this Problem
        Throws:
        SolverException - if params contains invalid parameter values
      • optimisationVector

        public void optimisationVector​(ParameterVector output)
        Description copied from interface: Optimisable
        Calculates the vector argument defined on Rn to the scalar objective function for this Optimisable.
        Specified by:
        optimisationVector in interface Optimisable
        Parameters:
        output - the output vector where the result will be stored
      • 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.
      • getX

        public double[] getX()
      • getY

        public double[] getY()
      • addAssignmentListener

        public void addAssignmentListener​(AssignmentListener listener)