Package io.github.cvc5.modes
Enum Class ProofComponent
- All Implemented Interfaces:
Serializable
,Comparable<ProofComponent>
,Constable
Enum representing the set of possible values for ProofComponent.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA proof of false whose free assumptions are a subset of the input formulas F1), ...Proofs of Gu1 ...Proofs of G1 ...A proof of false whose free assumptions are Gu1, ...Proofs of L1 ... -
Method Summary
Modifier and TypeMethodDescriptionstatic ProofComponent
fromInt
(int value) Converts an integer value to the corresponding enum constant.int
getValue()
Get the integer value associated with this enum constant.static ProofComponent
Returns the enum constant of this class with the specified name.static ProofComponent[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RAW_PREPROCESS
Proofs of G1 ... Gn whose free assumptions are a subset of F1, ... Fm, where:- G1, ... Gn are the preprocessed input formulas,
- F1, ... Fm are the input formulas.
-
PREPROCESS
Proofs of Gu1 ... Gun whose free assumptions are Fu1, ... Fum, where:- Gu1, ... Gun are clauses corresponding to input formulas used in the SAT
- Fu1, ... Fum is the subset of the input formulas that are used in the SAT
-
SAT
A proof of false whose free assumptions are Gu1, ... Gun, L1 ... Lk, where:- Gu1, ... Gun, is a set of clauses corresponding to input formulas,
- L1, ..., Lk is a set of clauses corresponding to theory lemmas.
-
THEORY_LEMMAS
Proofs of L1 ... Lk where:- L1, ..., Lk are clauses corresponding to theory lemmas used in the SAT
-
FULL
A proof of false whose free assumptions are a subset of the input formulas F1), ... Fm. Only valid immediately after an unsat response.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
fromInt
Converts an integer value to the corresponding enum constant.- Parameters:
value
- the integer representation of the enum constant.- Returns:
- the corresponding enum constant for the given integer value.
- Throws:
CVC5ApiException
- if the value is outside the valid range, or if no corresponding enum constant exists.
-
getValue
public int getValue()Get the integer value associated with this enum constant.- Returns:
- the integer representation of the enum constant.
-