You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
107 B

  1. (declare-const a Bool)
  2. (declare-const b Bool)
  3. (assert (not a))
  4. (assert (or a b))
  5. (check-sat)
  6. (get-model)