Package org.sosy_lab.java_smt
Enum SolverContextFactory.Solvers
- java.lang.Object
-
- java.lang.Enum<SolverContextFactory.Solvers>
-
- org.sosy_lab.java_smt.SolverContextFactory.Solvers
-
- All Implemented Interfaces:
Serializable
,Comparable<SolverContextFactory.Solvers>
- Enclosing class:
- SolverContextFactory
public static enum SolverContextFactory.Solvers extends Enum<SolverContextFactory.Solvers>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SolverContextFactory.Solvers
valueOf(String name)
Returns the enum constant of this type with the specified name.static SolverContextFactory.Solvers[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPENSMT
public static final SolverContextFactory.Solvers OPENSMT
-
MATHSAT5
public static final SolverContextFactory.Solvers MATHSAT5
-
SMTINTERPOL
public static final SolverContextFactory.Solvers SMTINTERPOL
-
Z3
public static final SolverContextFactory.Solvers Z3
-
PRINCESS
public static final SolverContextFactory.Solvers PRINCESS
-
BOOLECTOR
public static final SolverContextFactory.Solvers BOOLECTOR
-
CVC4
public static final SolverContextFactory.Solvers CVC4
-
CVC5
public static final SolverContextFactory.Solvers CVC5
-
YICES2
public static final SolverContextFactory.Solvers YICES2
-
BITWUZLA
public static final SolverContextFactory.Solvers BITWUZLA
-
-
Method Detail
-
values
public static SolverContextFactory.Solvers[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SolverContextFactory.Solvers c : SolverContextFactory.Solvers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SolverContextFactory.Solvers valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-