Interface IntegerSolution

All Superinterfaces:
java.io.Serializable, Solution<java.lang.Integer>
All Known Implementing Classes:
DefaultIntegerSolution

public interface IntegerSolution
extends Solution<java.lang.Integer>
Interface representing a integer solutions
Author:
Antonio J. Nebro
  • Method Details

    • getLowerBound

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

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

      default Bounds<java.lang.Integer> 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.