public enum FindSynthTarget extends java.lang.Enum<FindSynthTarget>
Enum Constant and Description |
---|
ENUM
Find the next term in the enumeration of the target grammar.
|
QUERY
Find a query over the given grammar.
|
REWRITE
Find a pair of terms (t,s) in the target grammar which are equivalent
but do not rewrite to the same term in the given rewriter
(--sygus-rewrite=MODE).
|
REWRITE_INPUT
Find a rewrite between pairs of terms (t,s) that are matchable with terms
in the input assertions where t and s are equivalent but do not rewrite
to the same term in the given rewriter (--sygus-rewrite=MODE).
|
REWRITE_UNSOUND
Find a term t in the target grammar which rewrites to a term s that is
not equivalent to it.
|
Modifier and Type | Method and Description |
---|---|
static FindSynthTarget |
fromInt(int value) |
int |
getValue() |
static FindSynthTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FindSynthTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FindSynthTarget ENUM
public static final FindSynthTarget REWRITE
public static final FindSynthTarget REWRITE_UNSOUND
public static final FindSynthTarget REWRITE_INPUT
public static final FindSynthTarget QUERY
public static FindSynthTarget[] values()
for (FindSynthTarget c : FindSynthTarget.values()) System.out.println(c);
public static FindSynthTarget 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 FindSynthTarget fromInt(int value) throws CVC5ApiException
CVC5ApiException
public int getValue()