public static enum Solution.Outcome extends Enum<Solution.Outcome>
| Enum Constant and Description |
|---|
SATISFIABLE
The formula is satisfiable with respect to the specified bounds.
|
TRIVIALLY_SATISFIABLE
The formula is trivially satisfiable with respect to the specified bounds:
a series of simple transformations reduces the formula to the constant TRUE.
|
TRIVIALLY_UNSATISFIABLE
The formula is trivially unsatisfiable with respect to the specified bounds:
a series of simple transformations reduces the formula to the constant FALSE.
|
UNSATISFIABLE
The formula is unsatisfiable with respect to the specified bounds.
|
| Modifier and Type | Method and Description |
|---|---|
static Solution.Outcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Solution.Outcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Solution.Outcome SATISFIABLE
public static final Solution.Outcome TRIVIALLY_SATISFIABLE
public static final Solution.Outcome TRIVIALLY_UNSATISFIABLE
public static final Solution.Outcome UNSATISFIABLE
public static Solution.Outcome valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Solution.Outcome[] values()
for (Solution.Outcome c : Solution.Outcome.values()) System.out.println(c);
© Emina Torlak 2005-present