Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VFPG
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
POLLIEN Baptiste
VFPG
Commits
077f1b40
Commit
077f1b40
authored
1 year ago
by
WASQUEL Valentin
Browse files
Options
Downloads
Patches
Plain Diff
add some NEC_statement Lemma
parent
d2d2bd3b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/semantics/FPBigStepClight.v
+17
-0
17 additions, 0 deletions
src/semantics/FPBigStepClight.v
with
17 additions
and
0 deletions
src/semantics/FPBigStepClight.v
+
17
−
0
View file @
077f1b40
...
...
@@ -382,6 +382,23 @@ with No_external_call_statement_labeled : labeled_statements -> Prop :=
No_external_call_statement_labeled
lst
->
No_external_call_statement_labeled
(
LScons
l
st
lst
).
Lemma
NECSL_NECSseq
:
forall
sl
,
No_external_call_statement_labeled
sl
<->
No_external_call_statement
(
seq_of_labeled_statement
sl
).
Proof
.
intros
sl
.
split
;
intros
H
;
induction
sl
.
-
+
simpl
.
constructor
.
+
simpl
.
constructor
;
inversion
H
;
subst
.
apply
H2
.
apply
(
IHsl
H4
).
-
+
constructor
.
+
simpl
in
H
.
inversion
H
;
subst
.
constructor
;
auto
.
Qed
.
Lemma
No_external_after_switch
:
forall
a
sl
n
,
No_external_call_statement
(
Sswitch
a
sl
)
->
No_external_call_statement
(
seq_of_labeled_statement
(
select_switch
n
sl
)).
Proof
.
Admitted
.
Axiom
No_SBuiltin
:
forall
s
,
No_external_call
s
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment