Interface DoubleSolution

All Superinterfaces:
java.io.Serializable, Solution<java.lang.Double>
All Known Implementing Classes:
DefaultDoubleSolution

public interface DoubleSolution
extends Solution<java.lang.Double>
Interface representing a double solutions
Author:
Antonio J. Nebro
  • Method Details

    • getLowerBound

      @Deprecated java.lang.Double getLowerBound​(int index)
      Deprecated.
    • getUpperBound

      @Deprecated java.lang.Double getUpperBound​(int index)
      Deprecated.
    • getBounds

      default Bounds<java.lang.Double> getBounds​(int index)
      It is often the case that we use both bounds together. Searching twice the same index may be counter productive in this case. This methods allows to offer this optimization, although its default implementation just delegates to the separate methods.