Skip to content

Commit

Permalink
almost there, only a few admitted cases about freshness remain
Browse files Browse the repository at this point in the history
  • Loading branch information
h0nzZik committed Mar 19, 2024
1 parent 82682d4 commit 8d2bd20
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions minuska/theories/minusl_compile_properties.v
Original file line number Diff line number Diff line change
Expand Up @@ -9150,15 +9150,26 @@ Proof.
revert H4. intros H4.
apply satisfies__MinusL_isValue__subst in H4.
simpl in H4.
unfold MinusL_isValue.
(* Now we want to use H4. Somehow. *)
erewrite satisfies_scs_vars_of.
apply satisfies_insert_MinusL_isValue; simpl.
{ admit. }
{
(* We would like somethiing like this: *)
apply H4.
unfold Valuation in *.
rewrite insert_commute with (i := iV_var)(j := V2).
rewrite insert_commute with (i := iV_var)(j := V1).
erewrite satisfies_scs_vars_of.
{ apply H4. }
{
intros x Hx.
destruct (decide (x = V2)).
{
subst x.
admit.
}
admit.
}
admit. admit.
}
}

}
}
Qed.
Expand Down

0 comments on commit 8d2bd20

Please sign in to comment.