Package io.github.cvc5
Class Result
java.lang.Object
io.github.cvc5.Result
Encapsulation of a three-valued solver result, with explanations.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Free the native resource associated with this pointer.protected void
deletePointer
(long pointer) Delete the native resource associated with the specified pointer.boolean
Operator overloading for equality of two results.long
Return the raw native pointer.Get an explanation for an unknown query result.int
hashCode()
Get the hash value of a result.boolean
isNull()
Determine if Result is empty, i.e., a nullary Result, and not an actual result returned from a checkSat() (and friends) query.boolean
isSat()
Determine if query was a satisfiable checkSat() or checkSatAssuming() query.boolean
Determine if query was a checkSat() or checkSatAssuming() query and cvc5 was not able to determine (un)satisfiability.boolean
isUnsat()
Determine if if query was an unsatisfiable checkSat() or checkSatAssuming() query.toString()
Return a string representation of the pointer.protected String
toString
(long pointer) Return a string representation of the specified native pointer.
-
Field Details
-
pointer
protected long pointerThe raw native pointer value.
-
-
Constructor Details
-
Result
public Result()Null result
-
-
Method Details
-
deletePointer
protected void deletePointer(long pointer) Delete the native resource associated with the specified pointer.Subclasses must implement this method to provide resource-specific cleanup logic.
- Parameters:
pointer
- the native pointer to delete
-
isNull
public boolean isNull()Determine if Result is empty, i.e., a nullary Result, and not an actual result returned from a checkSat() (and friends) query.- Returns:
- True if Result is empty, i.e., a nullary Result, and not an actual result returned from a checkSat() (and friends) query.
-
isSat
public boolean isSat()Determine if query was a satisfiable checkSat() or checkSatAssuming() query.- Returns:
- True if query was a satisfiable checkSat() or checkSatAssuming() query.
-
isUnsat
public boolean isUnsat()Determine if if query was an unsatisfiable checkSat() or checkSatAssuming() query.- Returns:
- True if query was an unsatisfiable checkSat() or checkSatAssuming() query.
-
isUnknown
public boolean isUnknown()Determine if query was a checkSat() or checkSatAssuming() query and cvc5 was not able to determine (un)satisfiability.- Returns:
- True if query was a checkSat() or checkSatAssuming() query and cvc5 was not able to determine (un)satisfiability.
-
equals
Operator overloading for equality of two results. -
getUnknownExplanation
Get an explanation for an unknown query result.- Returns:
- The explanation.
-
toString
Return a string representation of the specified native pointer.Subclasses must implement this method to convert the native pointer into a meaningful string.
- Parameters:
pointer
- the native pointer- Returns:
- A string representation of this result.
-
hashCode
public int hashCode()Get the hash value of a result. -
getPointer
public long getPointer()Return the raw native pointer.- Returns:
- the pointer value
-
deletePointer
public void deletePointer()Free the native resource associated with this pointer.This method should be called to explicitly clean up the underlying native resource. It removes this instance from the
Context
, then invokes the subclass-defineddeletePointer(long)
method to perform the actual cleanup. -
toString
Return a string representation of the pointer.
-