Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
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
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
Amin Timany
iris-coq
Commits
4763600e
Commit
4763600e
authored
9 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
consistent name for exist_ne
parent
ab2b5816
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
algebra/upred.v
+1
-1
1 addition, 1 deletion
algebra/upred.v
program_logic/invariants.v
+1
-1
1 addition, 1 deletion
program_logic/invariants.v
with
2 additions
and
2 deletions
algebra/upred.v
+
1
−
1
View file @
4763600e
...
...
@@ -301,7 +301,7 @@ Proof. by intros n Ψ1 Ψ2 HΨ n' x; split; intros HP a; apply HΨ. Qed.
Global
Instance
forall_proper
A
:
Proper
(
pointwise_relation
_
(
≡
)
==>
(
≡
))
(
@
uPred_forall
M
A
)
.
Proof
.
by
intros
Ψ1
Ψ2
HΨ
n'
x
;
split
;
intros
HP
a
;
apply
HΨ
.
Qed
.
Global
Instance
exist
s
_ne
A
:
Global
Instance
exist_ne
A
:
Proper
(
pointwise_relation
_
(
dist
n
)
==>
dist
n
)
(
@
uPred_exist
M
A
)
.
Proof
.
by
intros
n
P1
P2
HP
x
;
split
;
intros
[
a
?];
exists
a
;
apply
HP
.
Qed
.
Global
Instance
exist_proper
A
:
...
...
This diff is collapsed.
Click to expand it.
program_logic/invariants.v
+
1
−
1
View file @
4763600e
...
...
@@ -21,7 +21,7 @@ Implicit Types P Q R : iProp Λ Σ.
Implicit
Types
Φ
:
val
Λ
→
iProp
Λ
Σ
.
Global
Instance
inv_contractive
N
:
Contractive
(
@
inv
Λ
Σ
N
)
.
Proof
.
intros
n
???
.
apply
exist
s
_ne
=>
i
.
by
apply
and_ne
,
ownI_contractive
.
Qed
.
Proof
.
intros
n
???
.
apply
exist_ne
=>
i
.
by
apply
and_ne
,
ownI_contractive
.
Qed
.
Global
Instance
inv_always_stable
N
P
:
AlwaysStable
(
inv
N
P
)
.
Proof
.
rewrite
/
inv
;
apply
_
.
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