Class SimpleBounds

java.lang.Object
org.apache.commons.math3.optimization.SimpleBounds
All Implemented Interfaces:
OptimizationData

@Deprecated public class SimpleBounds extends Object implements OptimizationData
Deprecated.
As of 3.1 (to be removed in 4.0).
Simple optimization constraints: lower and upper bounds. The valid range of the parameters is an interval that can be infinite (in one or both directions).
Immutable class.
Since:
3.1
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final double[]
    Deprecated.
    Lower bounds.
    private final double[]
    Deprecated.
    Upper bounds.
  • Constructor Summary

    Constructors
    Constructor
    Description
    SimpleBounds(double[] lB, double[] uB)
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    double[]
    Deprecated.
    Gets the lower bounds.
    double[]
    Deprecated.
    Gets the lower bounds.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • lower

      private final double[] lower
      Deprecated.
      Lower bounds.
    • upper

      private final double[] upper
      Deprecated.
      Upper bounds.
  • Constructor Details

    • SimpleBounds

      public SimpleBounds(double[] lB, double[] uB)
      Deprecated.
      Parameters:
      lB - Lower bounds.
      uB - Upper bounds.
  • Method Details

    • getLower

      public double[] getLower()
      Deprecated.
      Gets the lower bounds.
      Returns:
      the initial guess.
    • getUpper

      public double[] getUpper()
      Deprecated.
      Gets the lower bounds.
      Returns:
      the initial guess.