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