SatisfiabilityCount
SatisfiabilityCount(boolean-expr)
test whether the
boolean-expr
is satisfiable by a combination of booleanFalse
andTrue
values for the variables of the boolean expression and return the number of possible combinations.
SatisfiabilityCount(boolean-expr, list-of-variables)
test whether the
boolean-expr
is satisfiable by a combination of booleanFalse
andTrue
values for thelist-of-variables
and return the number of possible combinations.
See
Examples
>> SatisfiabilityCount((a || b) && (! a || ! b), {a, b})2
Implementation status
- ✅ - full supported