Vocabularyboolean-exprInputsOutputsWord descriptionReturn
t if the
expr can be true.
ExamplesUSING: boolean-expr prettyprint ;
⊤ satisfiable? .
t
USING: boolean-expr prettyprint ;
⊥ satisfiable? .
f
USING: boolean-expr prettyprint ;
X X ¬ ⋀ satisfiable? .
f
USING: boolean-expr prettyprint ;
X Y ⋁ X ¬ Y ¬ ⋀ ⋀ satisfiable? .
f
USING: boolean-expr prettyprint ;
X Y ⋁ X ¬ Y ⋀ ⋀ satisfiable? .
t
Definition