Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lambda-rust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Service Desk
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
Iris
lambda-rust
Commits
2e3eacbb
Commit
2e3eacbb
authored
1 year ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
update to Coq 8.18
parent
c08f1954
No related branches found
Branches containing commit
No related tags found
1 merge request
!32
update to Coq 8.18
Pipeline
#90189
passed
1 year ago
Stage: build
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+3
-3
3 additions, 3 deletions
.gitlab-ci.yml
README.md
+1
-1
1 addition, 1 deletion
README.md
theories/lang/heap.v
+1
-1
1 addition, 1 deletion
theories/lang/heap.v
with
5 additions
and
5 deletions
.gitlab-ci.yml
+
3
−
3
View file @
2e3eacbb
...
...
@@ -28,10 +28,10 @@ variables:
## Build jobs
build-coq.8.1
7
.0
:
build-coq.8.1
8
.0
:
<<
:
*template
variables
:
OPAM_PINS
:
"
coq
version
8.1
7
.0"
OPAM_PINS
:
"
coq
version
8.1
8
.0"
DENY_WARNINGS
:
"
1"
MANGLE_NAMES
:
"
1"
tags
:
...
...
@@ -40,7 +40,7 @@ build-coq.8.17.0:
trigger-iris.timing
:
<<
:
*template
variables
:
OPAM_PINS
:
"
coq
version
8.1
7
.0
git+https://gitlab.mpi-sws.org/$IRIS_REPO#$IRIS_REV"
OPAM_PINS
:
"
coq
version
8.1
8
.0
git+https://gitlab.mpi-sws.org/$IRIS_REPO#$IRIS_REV"
tags
:
-
fp-timing
only
:
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
2e3eacbb
...
...
@@ -6,7 +6,7 @@ This is the Coq development accompanying lambda-Rust.
This version is known to compile with:
-
Coq 8.1
7
.0
-
Coq 8.1
8
.0
-
A development version of
[
Iris
](
https://gitlab.mpi-sws.org/iris/iris
)
## Building from source
...
...
This diff is collapsed.
Click to expand it.
theories/lang/heap.v
+
1
−
1
View file @
2e3eacbb
...
...
@@ -91,7 +91,7 @@ Section to_heap.
Implicit
Types
σ
:
state
.
Lemma
to_heap_valid
σ
:
✓
to_heap
σ
.
Proof
.
intros
l
.
rewrite
lookup_fmap
.
case
(
σ
!!
l
)
=>
[[[|
n
]
v
]|]
//
=
.
Qed
.
Proof
.
intros
l
.
rewrite
lookup_fmap
.
destruct
(
σ
!!
l
)
as
[[[|
n
]
v
]|]
eqn
:
EQ
;
rewrite
EQ
//.
Qed
.
Lemma
lookup_to_heap_None
σ
l
:
σ
!!
l
=
None
→
to_heap
σ
!!
l
=
None
.
Proof
.
by
rewrite
/
to_heap
lookup_fmap
=>
->
.
Qed
.
...
...
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