enum
Z3::CheckResult
Overview
What #check came back with. Z3 answers an LBool, whose False means "no model
exists" rather than anything about a Bool expression, so it gets a type of its own
rather than leaking LibZ3 into every #check.
Defined in:
z3/check_result.crEnum Members
-
Unsat =
-1 -
Unknown =
0 -
Sat =
1
Constructors
Instance Method Summary
-
#sat?
Returns
trueif this enum value equalsSat -
#unknown?
Returns
trueif this enum value equalsUnknown -
#unsat?
Returns
trueif this enum value equalsUnsat