public static enum FormulaUnLet.UnletType extends java.lang.Enum<FormulaUnLet.UnletType>
Enum Constant and Description |
---|
EXPAND_DEFINITIONS
The SMTLIB compliant unlet that expands definitions.
|
LAZY
The non-SMTLIB compliant unlet that does not expand definitions but
uses the lazy semantics.
|
SMTLIB
The SMTLIB compliant unlet that does not expand definitions.
|
Modifier and Type | Method and Description |
---|---|
static FormulaUnLet.UnletType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormulaUnLet.UnletType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormulaUnLet.UnletType SMTLIB
public static final FormulaUnLet.UnletType LAZY
public static final FormulaUnLet.UnletType EXPAND_DEFINITIONS
public static FormulaUnLet.UnletType[] values()
for (FormulaUnLet.UnletType c : FormulaUnLet.UnletType.values()) System.out.println(c);
public static FormulaUnLet.UnletType 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 null