Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Actris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
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
tlsomers
Actris
Commits
c08bba36
Commit
c08bba36
authored
4 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
update dependencies; fix for `l ↦ -` removal
parent
769d2c32
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
opam
+1
-1
1 addition, 1 deletion
opam
theories/utils/llist.v
+2
-2
2 additions, 2 deletions
theories/utils/llist.v
with
3 additions
and
3 deletions
opam
+
1
−
1
View file @
c08bba36
...
...
@@ -9,5 +9,5 @@ build: [make "-j%{jobs}%"]
install: [make "install"]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/actris" ]
depends: [
"coq-iris" { (= "dev.2020-1
0-20.2.c65b38ea
") | (= "dev") }
"coq-iris" { (= "dev.2020-1
1-03.3.4cd21e62
") | (= "dev") }
]
This diff is collapsed.
Click to expand it.
theories/utils/llist.v
+
2
−
2
View file @
c08bba36
...
...
@@ -193,7 +193,7 @@ Qed.
Lemma
lapp_spec
l1
l2
xs1
xs2
:
{{{
llist
I
l1
xs1
∗
llist
I
l2
xs2
}}}
lapp
#
l1
#
l2
{{{
RET
#
();
llist
I
l1
(
xs1
++
xs2
)
∗
l2
↦
-
}}}
.
{{{
RET
#
();
llist
I
l1
(
xs1
++
xs2
)
∗
(
∃
v
,
l2
↦
v
)
}}}
.
Proof
.
iIntros
(
Φ
)
"[Hll1 Hll2] HΦ"
.
iInduction
xs1
as
[|
x1
xs1
]
"IH"
forall
(
l1
Φ
);
simpl
;
wp_rec
;
wp_pures
.
...
...
@@ -209,7 +209,7 @@ Qed.
Lemma
lprep_spec
l1
l2
xs1
xs2
:
{{{
llist
I
l1
xs2
∗
llist
I
l2
xs1
}}}
lprep
#
l1
#
l2
{{{
RET
#
();
llist
I
l1
(
xs1
++
xs2
)
∗
l2
↦
-
}}}
.
{{{
RET
#
();
llist
I
l1
(
xs1
++
xs2
)
∗
(
∃
v
,
l2
↦
v
)
}}}
.
Proof
.
iIntros
(
Φ
)
"[Hll1 Hll2] HΦ"
.
wp_lam
.
wp_apply
(
lapp_spec
with
"[$Hll2 $Hll1]"
);
iIntros
"[Hll2 Hl1]"
.
...
...
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