Skip to content
Snippets Groups Projects
Commit 0d6818bb authored by Hans-Peter Deifel's avatar Hans-Peter Deifel :turtle:
Browse files

tests: Add example where new Algorithm should fail

This formula is not aconjunctive and should be wrongly declared as
satisfiable by the algorithm that assumes aconjunctivity.

This doesn't work right now: The new algorithm also answers with
"unsat".
parent b6653b96
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,7 @@ let aconjunctive_testcases: satCheck list =
; c Unsat "ν x. ν y. ([r] x & <r> y & False)"
(* These formulas aren't *)
; c Unsat "μ x. μ y. ([r] x & <r> y)"
; c Unsat "(ν x. (<r> True & [r] x)) & (μ x. ((p0 | [r] x) & (~p0 | [r] x)))"
]
let nominal_testcases =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment