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
355d27d7
Commit
355d27d7
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Bump Iris.
parent
228ade96
No related branches found
No related tags found
No related merge requests found
Pipeline
#41118
passed
4 years ago
Stage: build
Changes
3
Pipelines
5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
coq-lambda-rust.opam
+1
-1
1 addition, 1 deletion
coq-lambda-rust.opam
theories/lang/heap.v
+3
-3
3 additions, 3 deletions
theories/lang/heap.v
theories/typing/type.v
+2
-2
2 additions, 2 deletions
theories/typing/type.v
with
6 additions
and
6 deletions
coq-lambda-rust.opam
+
1
−
1
View file @
355d27d7
...
...
@@ -13,7 +13,7 @@ the type system, and safety proof for some Rust libraries.
"""
depends: [
"coq-iris" { (= "dev.202
0-12-10.1.872fe77b
") | (= "dev") }
"coq-iris" { (= "dev.202
1-01-25.1.21b7ffa1
") | (= "dev") }
]
build: [make "-j%{jobs}%"]
...
...
This diff is collapsed.
Click to expand it.
theories/lang/heap.v
+
3
−
3
View file @
355d27d7
...
...
@@ -9,13 +9,13 @@ From lrust.lang Require Export lang.
Set
Default
Proof
Using
"Type"
.
Import
uPred
.
Definition
lock_stateR
:
cmra
T
:=
Definition
lock_stateR
:
cmra
:=
csumR
(
exclR
unitO
)
natR
.
Definition
heapUR
:
ucmra
T
:=
Definition
heapUR
:
ucmra
:=
gmapUR
loc
(
prodR
(
prodR
fracR
lock_stateR
)
(
agreeR
valO
))
.
Definition
heap_freeableUR
:
ucmra
T
:=
Definition
heap_freeableUR
:
ucmra
:=
gmapUR
block
(
prodR
fracR
(
gmapR
Z
(
exclR
unitO
)))
.
Class
heapG
Σ
:=
HeapG
{
...
...
This diff is collapsed.
Click to expand it.
theories/typing/type.v
+
2
−
2
View file @
355d27d7
...
...
@@ -190,7 +190,7 @@ Section ofe.
-
split
;
[
by
destruct
1
|
by
intros
[[??]
?];
constructor
]
.
-
split
;
[
by
destruct
1
|
by
intros
[[??]
?];
constructor
]
.
Qed
.
Canonical
Structure
typeO
:
ofe
T
:=
Ofe
T
type
type_ofe_mixin
.
Canonical
Structure
typeO
:
ofe
:=
Ofe
type
type_ofe_mixin
.
Global
Instance
ty_size_ne
n
:
Proper
(
dist
n
==>
eq
)
ty_size
.
Proof
.
intros
??
EQ
.
apply
EQ
.
Qed
.
...
...
@@ -242,7 +242,7 @@ Section ofe.
-
split
;
[
by
destruct
1
|
by
constructor
]
.
-
split
;
[
by
destruct
1
|
by
constructor
]
.
Qed
.
Canonical
Structure
stO
:
ofe
T
:=
Ofe
T
simple_type
st_ofe_mixin
.
Canonical
Structure
stO
:
ofe
:=
Ofe
simple_type
st_ofe_mixin
.
Global
Instance
st_own_ne
n
:
Proper
(
dist
n
==>
eq
==>
eq
==>
dist
n
)
st_own
.
...
...
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