public static enum Engine.ExecutionMode extends java.lang.Enum<Engine.ExecutionMode>
| Enum Constant and Description |
|---|
ENGINE_PLAIN
The prover is executed in plain mode, it is the fastest execution mode.
|
ENGINE_TRACE
The prover is executed in trace mode, i.e., the proof-trace describing
the current proof search is built during proof-search.
|
ENGINE_VERBOSE
The prover is executed in verbose mode, i.e., it prints on the standard
output a detailed description of the proof-search.
|
| Modifier and Type | Method and Description |
|---|---|
static Engine.ExecutionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Engine.ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Engine.ExecutionMode ENGINE_PLAIN
public static final Engine.ExecutionMode ENGINE_VERBOSE
public static final Engine.ExecutionMode ENGINE_TRACE
public static Engine.ExecutionMode[] values()
for (Engine.ExecutionMode c : Engine.ExecutionMode.values()) System.out.println(c);
public static Engine.ExecutionMode 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