You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/AbstractInterpretation/ZRangeProofs.v
+20-2Lines changed: 20 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -65,11 +65,29 @@ Module Compilers.
65
65
-> type.related_hetero (fun t x v => ZRange.type.base.option.is_bounded_by x v = true) x v.
66
66
Proof. induction t; cbn in *; intuition congruence. Qed.
67
67
68
+
Lemma is_bounded_by_impl_related_hetero_and_Proper {skip_base} t
69
+
(x : ZRange.type.option.interp t) (v : type.interp base.interp t)
70
+
: ZRange.type.option.is_bounded_by x v = true
71
+
-> type.related_hetero_and_Proper (skip_base:=skip_base) (fun _ => eq) (fun _ => eq) (fun t x v => ZRange.type.base.option.is_bounded_by x v = true) x v.
72
+
Proof. induction t; cbn in *; break_innermost_match; intuition congruence. Qed.
73
+
68
74
Lemma is_bounded_by_impl_eqv_refl t
75
+
(x : ZRange.type.option.interp t) (v : type.interp base.interp t)
0 commit comments