Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
semantics-course
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
FP
semantics-course
Commits
120e9af9
Commit
120e9af9
authored
2 years ago
by
Lennard Gäher
Browse files
Options
Downloads
Patches
Plain Diff
bump iris
parent
f5867e78
No related branches found
No related tags found
No related merge requests found
Pipeline
#72550
failed
2 years ago
Stage: build
Changes
2
Pipelines
40
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
semantics.opam
+2
-2
2 additions, 2 deletions
semantics.opam
theories/program_logics/resource_algebras.v
+4
-4
4 additions, 4 deletions
theories/program_logics/resource_algebras.v
with
6 additions
and
6 deletions
semantics.opam
+
2
−
2
View file @
120e9af9
...
...
@@ -10,8 +10,8 @@ version: "dev"
depends: [
"coq" { (>= "8.13" & < "8.16~") | (= "dev") }
"coq-iris" { (= "dev.2022-08-
09
.0.
4e9a1ec7
") | (= "dev") }
"coq-iris-heap-lang" { (= "dev.2022-08-
09
.0.
4e9a1ec7
") | (= "dev") }
"coq-iris" { (= "dev.2022-08-
14
.0.
25e3b14e
") | (= "dev") }
"coq-iris-heap-lang" { (= "dev.2022-08-
14
.0.
25e3b14e
") | (= "dev") }
"coq-equations" { (= "1.2.4+8.13") | (= "1.3+8.14") | (= "1.3+8.15") }
"coq-autosubst" { = "1.7" }
]
...
...
This diff is collapsed.
Click to expand it.
theories/program_logics/resource_algebras.v
+
4
−
4
View file @
120e9af9
...
...
@@ -369,16 +369,16 @@ Section frac.
Lemma
frac_op
p
q
:
p
⋅
q
=
(
p
+
q
)
%
Qp
.
Proof
.
done
.
Qed
.
Lemma
frac_included
p
q
:
p
≼
q
↔
(
p
<
q
)
%
Qp
.
Proof
.
by
rewrite
Qp
_
lt_sum
.
Qed
.
Proof
.
by
rewrite
Qp
.
lt_sum
.
Qed
.
Corollary
frac_included_weak
p
q
:
p
≼
q
→
(
p
≤
q
)
%
Qp
.
Proof
.
rewrite
frac_included
.
apply
Qp
_
lt_le_incl
.
Qed
.
Proof
.
rewrite
frac_included
.
apply
Qp
.
lt_le_incl
.
Qed
.
Definition
frac_lra_mixin
:
LRAMixin
frac
.
Proof
.
split
;
try
apply
_;
try
done
.
intros
p
q
.
rewrite
!
frac_valid
frac_op
=>
?
.
trans
(
p
+
q
)
%
Qp
;
last
done
.
apply
Qp
_
le_add_l
.
trans
(
p
+
q
)
%
Qp
;
last
done
.
apply
Qp
.
le_add_l
.
Qed
.
Canonical
Structure
fracR
:
lra
:=
Lra
frac
frac_lra_mixin
.
...
...
@@ -386,7 +386,7 @@ Section frac.
lra_exclusive
1
%
Qp
.
Proof
.
intros
f
.
rewrite
frac_valid
frac_op
.
apply
Qp
_
not_add_le_l
.
apply
Qp
.
not_add_le_l
.
Qed
.
End
frac
.
...
...
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