summaryrefslogtreecommitdiff
path: root/test/regress/logops.cvc
blob: 663a659f371a4ee9fe2a0bbc2583d014f3ec40f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12


a, b, c: BOOLEAN;

QUERY (a XOR b) <=> (NOT a AND b) OR (NOT b AND a);

QUERY (IF c THEN a ELSE b ENDIF) <=> (c AND a) OR (NOT c AND b);

QUERY (a => b) <=> (NOT a OR b);

QUERY TRUE XOR FALSE;
 
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback