public enum UnknownExplanation extends java.lang.Enum<UnknownExplanation>
Enum Constant and Description |
---|
INCOMPLETE
Incomplete theory solver.
|
INTERRUPTED
Solver was interrupted.
|
MEMOUT
Memory limit reached.
|
OTHER
Other reason.
|
REQUIRES_CHECK_AGAIN
Requires another satisfiability check
|
REQUIRES_FULL_CHECK
Full satisfiability check required (e.g., if only preprocessing was
performed).
|
RESOURCEOUT
Resource limit reached.
|
TIMEOUT
Time limit reached.
|
UNKNOWN_REASON
No specific reason given.
|
UNSUPPORTED
Unsupported feature encountered.
|
Modifier and Type | Method and Description |
---|---|
static UnknownExplanation |
fromInt(int value) |
int |
getValue() |
static UnknownExplanation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UnknownExplanation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnknownExplanation REQUIRES_FULL_CHECK
public static final UnknownExplanation INCOMPLETE
public static final UnknownExplanation TIMEOUT
public static final UnknownExplanation RESOURCEOUT
public static final UnknownExplanation MEMOUT
public static final UnknownExplanation INTERRUPTED
public static final UnknownExplanation UNSUPPORTED
public static final UnknownExplanation OTHER
public static final UnknownExplanation REQUIRES_CHECK_AGAIN
public static final UnknownExplanation UNKNOWN_REASON
public static UnknownExplanation[] values()
for (UnknownExplanation c : UnknownExplanation.values()) System.out.println(c);
public static UnknownExplanation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static UnknownExplanation fromInt(int value) throws CVC5ApiException
CVC5ApiException
public int getValue()