Class MaxEval

java.lang.Object
org.apache.commons.math3.optim.MaxEval
All Implemented Interfaces:
OptimizationData

public class MaxEval extends Object implements OptimizationData
Maximum number of evaluations of the function to be optimized.
Since:
3.1
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final int
    Allowed number of evalutations.
  • Constructor Summary

    Constructors
    Constructor
    Description
    MaxEval(int max)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the maximum number of evaluations.
    static MaxEval
    Factory method that creates instance of this class that represents a virtually unlimited number of evaluations.

    Methods inherited from class java.lang.Object

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

    • maxEval

      private final int maxEval
      Allowed number of evalutations.
  • Constructor Details

  • Method Details

    • getMaxEval

      public int getMaxEval()
      Gets the maximum number of evaluations.
      Returns:
      the allowed number of evaluations.
    • unlimited

      public static MaxEval unlimited()
      Factory method that creates instance of this class that represents a virtually unlimited number of evaluations.
      Returns:
      a new instance suitable for allowing Integer.MAX_VALUE evaluations.