Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 675 Bytes

File metadata and controls

30 lines (16 loc) · 675 Bytes

SatisfiableQ

SatisfiableQ(boolean-expr, list-of-variables)

test whether the boolean-expr is satisfiable by a combination of boolean False and True values for the list-of-variables.

See

Examples

>> SatisfiableQ((a || b) && (! a || ! b), {a, b})
True

Implementation status

  • ✅ - full supported

Github