public enum SolutionType extends java.lang.Enum<SolutionType>
Enum Constant and Description |
---|
FEASIBLE
Il problema ammette soluzioni ammissibili.
|
ILLIMITATUM
Il problema ha ottimo illimitato
|
MAX_ITERATIUM
L'algoritmo si è interrotto in quanto si è raggiunto il numero massimo
di iterazioni.
|
MAX_NUM_SIMPLEX
L'algoritmo branch and bound si è interrotto in quanto si è raggiunto il numero massimo
di simplessi eseguibili.
|
OPTIMUM
Il problema ammette soluzione ottima
|
VUOTUM
Il problema non ammette soluzioni ammissibili.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static SolutionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SolutionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SolutionType OPTIMUM
public static final SolutionType ILLIMITATUM
public static final SolutionType MAX_ITERATIUM
public static final SolutionType MAX_NUM_SIMPLEX
public static final SolutionType VUOTUM
public static final SolutionType FEASIBLE
public static SolutionType[] values()
for (SolutionType c : SolutionType.values()) System.out.println(c);
public static SolutionType 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 java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<SolutionType>