From aceb9e71f3582a83bfcfca5df1d763da8486cba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Fri, 6 Jan 2017 19:05:24 +0100 Subject: [PATCH] Added checks for the assumptions I made on the behaviour of TR concerning phantom types, covariance, contravariance and its ability to recognize different formulations of the same type (or of a subtype or supertype). Updated the mindmap notes. --- Graph-notes-copy2.vue | 6 +- test/invariant-phantom-tr-assumptions.rkt | 42 +++++++++++++ test/invariant-phantom-tr-assumptions2.rkt | 69 ++++++++++++++++++++++ 3 files changed, 114 insertions(+), 3 deletions(-) create mode 100644 test/invariant-phantom-tr-assumptions.rkt create mode 100644 test/invariant-phantom-tr-assumptions2.rkt diff --git a/Graph-notes-copy2.vue b/Graph-notes-copy2.vue index b7341f9..bb8ee4c 100644 --- a/Graph-notes-copy2.vue +++ b/Graph-notes-copy2.vue @@ -1,14 +1,14 @@ - + - + - Graph-notes-copy2.vue diff --git a/test/invariant-phantom-tr-assumptions.rkt b/test/invariant-phantom-tr-assumptions.rkt new file mode 100644 index 0000000..d0d8287 --- /dev/null +++ b/test/invariant-phantom-tr-assumptions.rkt @@ -0,0 +1,42 @@ +#lang typed/racket + +(struct A ()) +(struct B A ()) +(struct C A ()) + +(: f (→ (U 'x A) Void)) +(define (f _) (void)) + +(let () + (ann f (→ (U B C) Void)) + (ann f (→ (U 'x B C) Void)) + (ann f (→ (U 'x C) Void)) + (ann f (→ (U 'x A C) Void)) + (ann f (→ (U 'x) Void)) + (ann f (→ (U) Void)) + (void)) + +;;;;;;;;;; + +;; Reverse order (BB, CC and DD are more precise invariants than AA) +(struct AA ()) +(struct BB AA ()) +(struct CC AA ()) +(struct DD AA ()) + +(define-type (Invariant X) (→ X Void)) + +(: g (→ (U (Invariant 'x) (Invariant BB) (Invariant CC)) Void)) +(define (g _) (void)) + +;; Everything works as expected +(let () + (ann g (→ (U (Invariant BB) (Invariant CC)) Void)) + (ann g (→ (U (Invariant 'x) (Invariant BB) (Invariant CC)) Void)) + (ann g (→ (U (Invariant 'x) (Invariant CC)) Void)) + (ann g (→ (U (Invariant 'x)) Void)) + (ann g (→ (U) Void)) + ;; AA works, as it should + (ann g (→ (U (Invariant 'x) (Invariant AA) (Invariant CC)) Void)) + (ann g (→ (U (Invariant 'x) (Invariant AA)) Void)) + (void)) \ No newline at end of file diff --git a/test/invariant-phantom-tr-assumptions2.rkt b/test/invariant-phantom-tr-assumptions2.rkt new file mode 100644 index 0000000..5a8d850 --- /dev/null +++ b/test/invariant-phantom-tr-assumptions2.rkt @@ -0,0 +1,69 @@ +#lang typed/racket + +(: f (→ (→ (U (Rec R (List (List 'a R) + (List 'b R))) + (Rec R (List (List 'a R) + (List 'c R)))) + Void) + Void)) +(define (f x) (void)) + +(ann f (→ (→ (U (Rec K (List (List 'a K) (List 'c K))) + (Rec W (List (List 'a W) (List 'b W)))) + Void) Void)) + +(ann f (→ (→ (U (Rec W (List (List 'a W) (List 'b W))) + (Rec K (List (List 'a K) (List 'c K)))) + Void) Void)) + +(: g (→ (→ (Rec A (Rec B (List (List 'a A) + (List 'b B)))) + Void) + Void)) +(define (g x) (void)) + +(ann g + (→ (→ (Rec B (Rec A (List (List 'a A) + (List 'b B)))) + Void) + Void)) + +(ann g + (→ (→ (Rec X (List (List 'a X) + (List 'b X))) + Void) + Void)) + +(define-type (≡ X Y) (List '≡ X Y)) + +(: h (→ (→ (∀ (X1 X2) (→ (U (≡ (List 'a 'b X1) + (List 'c 'd X1)) + (≡ (List 'e 'f X2) + (List 'g 'g X2))))) + Void) + Void)) +(define (h x) (void)) + + +(ann (λ ([x : (Rec R (Pairof 'a (Pairof 'b R)))]) (void)) + (-> (Rec R (Pairof 'a (Pairof 'b R))) Void)) + +(ann (λ ([x : (Rec R (Pairof 'a (Pairof 'b R)))]) (void)) + (-> (Pairof 'a (Rec R (Pairof 'b (Pairof 'a R)))) Void)) + +(ann (λ ([x : (Rec R (List 'a (List 'b R)))]) (void)) + (-> (List 'a (Rec R (List 'b (List 'a R)))) Void)) + +(ann (λ ([x : (Rec R (List 'a R (List 'b R)))]) (void)) + (-> (Rec R (Pairof 'a (Pairof R (Pairof (List 'b R) Null)))) Void)) + +(ann (λ ([x : (Rec R (List 'a R (List 'b R)))]) (void)) + (-> (Pairof 'a (Rec R (Pairof (Pairof 'a R) (Pairof (List 'b (Pairof 'a R)) Null)))) Void)) + +(ann (λ ([x : (Rec R (List 'a R (List 'b R)))]) (void)) + (-> (Pairof 'a (Pairof (Pairof 'a + (Rec R (Pairof (Pairof 'a R) (Pairof (List 'b (Pairof 'a R)) Null))) + ) + (Pairof (List 'b (Pairof 'a + (Rec R (Pairof (Pairof 'a R) (Pairof (List 'b (Pairof 'a R)) Null))) + )) Null))) Void)) \ No newline at end of file