aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/GiblePargenproofEvaluable.v
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-08-10 12:09:03 +0100
committerYann Herklotz <git@yannherklotz.com>2023-08-10 12:09:03 +0100
commit86e64fd05cea7b1da996701cd3653db5f471f8d1 (patch)
tree5cee338b89c4b1b2906cbf8e62d8f8dffdff0abb /src/hls/GiblePargenproofEvaluable.v
parent4d62c7f35533ebd36ae4a0bdef6cd64fcc0be375 (diff)
downloadvericert-86e64fd05cea7b1da996701cd3653db5f471f8d1.tar.gz
vericert-86e64fd05cea7b1da996701cd3653db5f471f8d1.zip
Finish final forward simulation correctness
Diffstat (limited to 'src/hls/GiblePargenproofEvaluable.v')
-rw-r--r--src/hls/GiblePargenproofEvaluable.v34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/hls/GiblePargenproofEvaluable.v b/src/hls/GiblePargenproofEvaluable.v
index 3bb9c66..7e55909 100644
--- a/src/hls/GiblePargenproofEvaluable.v
+++ b/src/hls/GiblePargenproofEvaluable.v
@@ -274,40 +274,6 @@ Proof.
eapply all_evaluable_cons in H. eauto.
Qed.
-Lemma all_evaluable_predicated_prod :
- forall A B G (ctx: @ctx G) ps (a: predicated A) (b: predicated B),
- all_evaluable ctx ps a ->
- all_evaluable ctx ps b ->
- all_evaluable ctx ps (predicated_prod a b).
-Proof.
- intros. unfold all_evaluable; intros.
- unfold predicated_prod in *. exploit all_evaluable_map_and.
- 2: { eauto. }
- intros. 2: { eauto. }
-Abort. (* Requires simple lemma to prove, but this lemma is not needed. *)
-
-Lemma cons_pred_expr_evaluable :
- forall G (ctx: @ctx G) ps a b,
- all_evaluable ctx ps a ->
- all_evaluable ctx ps b ->
- all_evaluable ctx ps (cons_pred_expr a b).
-Proof.
- unfold cons_pred_expr; intros.
- apply all_evaluable_predicated_map.
- (*now apply all_evaluable_predicated_prod.*)
-Abort.
-
-Lemma fold_right_all_evaluable :
- forall G (ctx: @ctx G) ps n,
- Forall (all_evaluable ctx ps) (NE.to_list n) ->
- all_evaluable ctx ps (NE.fold_right cons_pred_expr (NE.singleton (T, Enil)) n).
-Proof.
- induction n; cbn in *; intros.
- - unfold cons_pred_expr. eapply all_evaluable_predicated_map. (*eapply all_evaluable_predicated_prod.
- inv H. auto. unfold all_evaluable; intros. inv H0. exists true. constructor.*) admit.
- - inv H. specialize (IHn H3). (*now eapply cons_pred_expr_evaluable.*)
-Abort.
-
Lemma merge_all_evaluable :
forall G (ctx: @ctx G) ps,
pred_forest_evaluable ctx ps ->