Preliminary tests to compare stronger and weaker sets of predicates (for now just super/sub-set)

This commit is contained in:
Georges Dupéron 2017-01-10 23:02:17 +01:00
parent 64d1756678
commit b7c2babf85

View File

@ -363,6 +363,14 @@ relates two nodes in the graph.
@subsection{Putting it all together} @subsection{Putting it all together}
@chunk[<check-a-stronger-b>
(define-syntax (check-a-stronger-or-same-b stx)
(syntax-case stx ()
[(_ stronger weaker)
(syntax/top-loc stx
(check-ann (ann witness-value stronger)
weaker))]))]
@chunk[<*> @chunk[<*>
(require (for-syntax phc-toolkit)) (require (for-syntax phc-toolkit))
@ -371,8 +379,17 @@ relates two nodes in the graph.
<comparison-operators> <comparison-operators>
<≡> <≡>
(code:comment "Tests:") (module+ test
(ann witness-value (Invariants)) ;; No invariants (require phc-toolkit)
(ann witness-value (Invariants ( (a) (a b c)))) ;; No invariants <check-a-stronger-b>
(void)] (ann witness-value (Invariants)) ;; No invariants
(ann witness-value (Invariants ( (a) (a b c))))
(check-a-stronger-or-same-b (Invariants ( (a) (a b c)))
(Invariants))
(check-a-stronger-or-same-b (Invariants ( (a) (a b c)) ( (a) (a b d)))
(Invariants ( (a) (a b c))))
(check-a-stronger-or-same-b (Invariants ( (a) (a b d)) ( (a) (a b c)))
(Invariants ( (a) (a b c)))))]