Skip to content
Snippets Groups Projects
Commit 3c42e3f1 authored by Hans-Peter Deifel's avatar Hans-Peter Deifel Committed by Hans-Peter Deifel
Browse files

Fix testsuite for K

R and B are now keywords and were used as identifiers. Now, r and
b (lowercase) is used instead in the testcases. For consistency, all
other identifiers were lowercased, too.
parent 9352b45f
No related branches found
No related tags found
No related merge requests found
...@@ -31,21 +31,21 @@ let k_testcases: satCheck list = ...@@ -31,21 +31,21 @@ let k_testcases: satCheck list =
; c Unsat "False" ; c Unsat "False"
; c ParseError "{Fsdf" ; c ParseError "{Fsdf"
(*; c ParseError "Fsdf}" *) (*; c ParseError "Fsdf}" *)
; c Unsat "<R> True & [R] False" ; c Unsat "<r> True & [r] False"
; c Unsat "C |- <R> ~C" ; c Unsat "c |- <r> ~c"
; c Sat "C |- [R] ~C" ; c Sat "c |- [r] ~c"
; c Unsat "<R> ((<R> C) & (<S> False))" ; c Unsat "<r> ((<r> c) & (<s> False))"
; c Unsat "<X> (<S> False) | <R> ((<R> C) & (<S> False))" ; c Unsat "<x> (<s> False) | <r> ((<r> c) & (<s> False))"
; c Unsat "<X> (<S> False) | <R> ((<R> C) & (<S> False))" ; c Unsat "<x> (<s> False) | <r> ((<r> c) & (<s> False))"
; c Sat "<R> a & <R> B |- [R] C" ; c Sat "<r> a & <r> b |- [r] c"
; c Unsat "<R> a & <R> B |- [R] (~a & ~B)" ; c Unsat "<r> a & <r> b |- [r] (~a & ~b)"
; c Unsat "<R> a & <R> B |- [R] ~B" ; c Unsat "<r> a & <r> b |- [r] ~b"
; c Sat "<R> a & <R> ~a |- [R] B" ; c Sat "<r> a & <r> ~a |- [r] b"
; c Unsat "<R> a & <R> ~a & (B => [R] ~a) |- [R] B" ; c Unsat "<r> a & <r> ~a & (b => [r] ~a) |- [r] b"
; c Sat "<R> a & <R> ~a & (B => [R] ~a) & (C => ~D) & (D => ~e) & <R> C & <R> D & <R> e |- True" ; c Sat "<r> a & <r> ~a & (b => [r] ~a) & (c => ~d) & (d => ~e) & <r> c & <r> d & <r> e |- True"
; c Unsat "<R> D & <R> e & ((<R> D & <R> e) => [R] e) & ~(D & e) |- True" ; c Unsat "<r> d & <r> e & ((<r> d & <r> e) => [r] e) & ~(d & e) |- True"
; c Sat "(<R> D | <R> e) & ((<R> D & <R> e) => [R] e) & ~(D & e) |- True" ; c Sat "(<r> d | <r> e) & ((<r> d & <r> e) => [r] e) & ~(d & e) |- True"
; c Sat "<R> D & <R> e & ((<R> D & <R> e) => [R] e) & (D & e => <R> ~(D&e)) |- True" ; c Sat "<r> d & <r> e & ((<r> d & <r> e) => [r] e) & (d & e => <r> ~(d&e)) |- True"
] ]
......
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