From a9c90fe3354f65340283dc79431bc6915ed1ad90 Mon Sep 17 00:00:00 2001 From: Léo Gourdin Date: Tue, 20 Jul 2021 10:17:46 +0200 Subject: proof for symbolic simu, need to finish equiv_inputs --- scheduling/BTL_Schedulerproof.v | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'scheduling/BTL_Schedulerproof.v') diff --git a/scheduling/BTL_Schedulerproof.v b/scheduling/BTL_Schedulerproof.v index 91e650e8..05028f11 100644 --- a/scheduling/BTL_Schedulerproof.v +++ b/scheduling/BTL_Schedulerproof.v @@ -105,12 +105,10 @@ Lemma transf_fundef_correct f f': transf_fundef f = OK f' -> match_fundef f f'. Proof. intros TRANSF; destruct f; simpl; inv TRANSF. -Admitted. (* - + exploit transf_function_correct; eauto. - econstructor. intros MATCH_F. - eapply match_Internal; eauto. + + monadInv H0. exploit transf_function_correct; eauto. + constructor; auto. + eapply match_External. - Qed.*) +Qed. Lemma function_ptr_preserved: forall v f, -- cgit