Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BiCoq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
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
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MARCON Cecile
BiCoq
Commits
57e3f8c3
Commit
57e3f8c3
authored
3 months ago
by
MARCON Cecile
Browse files
Options
Downloads
Patches
Plain Diff
imp and is_imp need improving
parent
bd81b5b7
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/LeanSupportEquivalence.v
+6
-4
6 additions, 4 deletions
src/LeanSupportEquivalence.v
with
6 additions
and
4 deletions
src/LeanSupportEquivalence.v
+
6
−
4
View file @
57e3f8c3
...
...
@@ -415,7 +415,6 @@ Lemma not_is_idle_imp {s1 r1 s2 r2 : nat} {i1 o1 i2 o2 : NoDupList}
simpl
.
reflexivity
.
Qed
.
Lemma
not_is_idle_is_imp
{
s1
r1
s2
r2
:
nat
}
{
i1
o1
i2
o2
:
NoDupList
}
(
b1
:
bigraph
s1
i1
r1
o1
)
(
b2
:
bigraph
s2
i2
r2
o2
)
(
bij_i
:
permutation
i1
i2
)
...
...
@@ -540,7 +539,7 @@ Lemma not_is_idle_eq {s1 r1 s2 r2 : nat} {i1 o1 i2 o2 : NoDupList}
apply
(
not_is_idle_imp
b1
b2
bij_i
bij_o
bij_n
bij_e
bij_p
link_eq
).
apply
(
not_is_idle_is_imp
b1
b2
bij_i
bij_o
bij_n
bij_e
bij_p
link_eq
).
Qed
.
Print
not_is_idle_eq
.
Theorem
support_equivalence_implies_lean_support_equivalence
{
s1
r1
s2
r2
:
nat
}
{
i1
o1
i2
o2
:
NoDupList
}
(
b1
:
bigraph
s1
i1
r1
o1
)
(
b2
:
bigraph
s2
i2
r2
o2
)
:
...
...
@@ -553,9 +552,11 @@ Theorem support_equivalence_implies_lean_support_equivalence {s1 r1 s2 r2 : nat}
(
lean
b1
)
(
lean
b2
)
bij_s
bij_i
bij_r
bij_o
bij_n
<{
bij_e
|
not_is_idle_eq
b1
b2
bij_i
bij_o
bij_n
bij_e
bij_p
link_eq
}>
<{
bij_e
|
fun
a
=>
conj
(
not_is_idle_imp
b1
b2
bij_i
bij_o
bij_n
bij_e
bij_p
link_eq
a
)
(
not_is_idle_is_imp
b1
b2
bij_i
bij_o
bij_n
bij_e
bij_p
link_eq
a
)
}>
bij_p
control_eq
parent_eq
_
).
).
Check
conj
.
clear
control_eq
parent_eq
bij_s
bij_r
.
simpl
.
apply
functional_extensionality
.
...
...
@@ -663,4 +664,5 @@ Lemma lean_support_equivalence_trans
apply
support_equivalence_trans
.
Qed
.
End
LeanSupportEquivalence
.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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