Enum Class KinsolStatus

java.lang.Object
java.lang.Enum<KinsolStatus>
com.powsybl.math.solver.KinsolStatus
All Implemented Interfaces:
Serializable, Comparable<KinsolStatus>, Constable

public enum KinsolStatus extends Enum<KinsolStatus>
Author:
Geoffroy Jamgotchian <geoffroy.jamgotchian at rte-france.com>
  • Enum Constant Details

    • KIN_SUCCESS

      public static final KinsolStatus KIN_SUCCESS
    • KIN_INITIAL_GUESS_OK

      public static final KinsolStatus KIN_INITIAL_GUESS_OK
    • KIN_STEP_LT_STPTOL

      public static final KinsolStatus KIN_STEP_LT_STPTOL
    • KIN_MEM_NULL

      public static final KinsolStatus KIN_MEM_NULL
    • KIN_ILL_INPUT

      public static final KinsolStatus KIN_ILL_INPUT
    • KIN_NO_MALLOC

      public static final KinsolStatus KIN_NO_MALLOC
    • KIN_MEM_FAIL

      public static final KinsolStatus KIN_MEM_FAIL
    • KIN_LINESEARCH_NONCONV

      public static final KinsolStatus KIN_LINESEARCH_NONCONV
    • KIN_MAXITER_REACHED

      public static final KinsolStatus KIN_MAXITER_REACHED
    • KIN_MXNEWT_5X_EXCEEDED

      public static final KinsolStatus KIN_MXNEWT_5X_EXCEEDED
    • KIN_LINESEARCH_BCFAIL

      public static final KinsolStatus KIN_LINESEARCH_BCFAIL
    • KIN_LINSOLV_NO_RECOVERY

      public static final KinsolStatus KIN_LINSOLV_NO_RECOVERY
    • KIN_LINIT_FAIL

      public static final KinsolStatus KIN_LINIT_FAIL
    • KIN_LSETUP_FAIL

      public static final KinsolStatus KIN_LSETUP_FAIL
    • KIN_LSOLVE_FAIL

      public static final KinsolStatus KIN_LSOLVE_FAIL
    • KIN_SYSFUNC_FAIL

      public static final KinsolStatus KIN_SYSFUNC_FAIL
    • KIN_FIRST_SYSFUNC_ERR

      public static final KinsolStatus KIN_FIRST_SYSFUNC_ERR
    • KIN_REPTD_SYSFUNC_ERR

      public static final KinsolStatus KIN_REPTD_SYSFUNC_ERR
  • Method Details

    • values

      public static KinsolStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static KinsolStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public int getValue()