Annotation Interface IntegerParam


@Target(PARAMETER) @Retention(RUNTIME) @Documented public @interface IntegerParam
Declares how to generate values for a primitive parameter (int, double, etc) using the same strategies as Irace. See section 5.1.1 Parameter Types in the official irace manual for more details
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    int
    Biggest valid value in range.
    int
    Smallest valid value in range.
  • Element Details

    • min

      int min
      Smallest valid value in range. Range is inclusive Defaults to Integer.MIN_VALUE / 2
      Returns:
      int value
      Default:
      -1073741824
    • max

      int max
      Biggest valid value in range. Range is inclusive Defaults to Integer.MAX_VALUE / 2
      Returns:
      int value
      Default:
      1073741823