Annotation Interface RealParam


@Target(PARAMETER) @Retention(RUNTIME) @Documented public @interface RealParam
Declares a real-valued tunable parameter using the same real parameter type as irace. Use this annotation on real-valued constructor parameters such as double, float, their wrapper types, or String when the constructor expects the raw value. 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
    double
    Biggest valid value in range.
    double
    Smallest valid value in range.
  • Element Details

    • min

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

      double max
      Biggest valid value in range. Range is inclusive Defaults to Integer.MAX_VALUE / 2
      Returns:
      double value
      Default:
      1.073741823E9