public enum ReasoningOperation extends java.lang.Enum<ReasoningOperation>
| Enum Constant and Description |
|---|
CONSITENCY_CHECK
Checks whether the
de.uni_hildesheim.sse.model.varModel.Project is satisfiable. |
PROPAGATION
Performs as
VALIDATION and propagates values (only for variables
which are in state ReasoningState#UNASSIGNED or ReasoningState#DEFAULT_DIFFERENT. |
VALIDATION
Checks whether the
de.uni_hildesheim.sse.model.confModel.Configuration is valid, i.e. |
| Modifier and Type | Method and Description |
|---|---|
static ReasoningOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReasoningOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReasoningOperation CONSITENCY_CHECK
de.uni_hildesheim.sse.model.varModel.Project is satisfiable.public static final ReasoningOperation VALIDATION
de.uni_hildesheim.sse.model.confModel.Configuration is valid, i.e.
all constraints are satisfied.public static final ReasoningOperation PROPAGATION
VALIDATION and propagates values (only for variables
which are in state ReasoningState#UNASSIGNED or ReasoningState#DEFAULT_DIFFERENT.public static ReasoningOperation[] values()
for (ReasoningOperation c : ReasoningOperation.values()) System.out.println(c);
public static ReasoningOperation 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 nullCopyright © 2009 - 2018 SSE. All Rights Reserved.