Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Iris
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
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
Ike Mulder
Iris
Commits
4b0dd0df
Commit
4b0dd0df
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Make compile with Coq 8.5pl1.
parent
e3c56f9e
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_big_op.v
+4
-1
4 additions, 1 deletion
algebra/upred_big_op.v
program_logic/global_functor.v
+6
-4
6 additions, 4 deletions
program_logic/global_functor.v
with
10 additions
and
5 deletions
algebra/upred_big_op.v
+
4
−
1
View file @
4b0dd0df
...
...
@@ -111,8 +111,11 @@ Section gmap.
m1
≡
m2
→
(
∀
x
k
,
m1
!!
k
=
Some
x
→
m2
!!
k
=
Some
x
→
Φ
k
x
⊣⊢
Ψ
k
x
)
→
Π
★
{
map
m1
}
Φ
⊣⊢
Π
★
{
map
m2
}
Ψ
.
Proof
.
(* FIXME: Coq bug since 8.5pl1. Without the @ in [@lookup_weaken] it gives
File "./algebra/upred_big_op.v", line 114, characters 4-131:
Anomaly: Uncaught exception Univ.AlreadyDeclared. Please report. *)
intros
[??]
?;
apply
(
anti_symm
(
⊢
));
apply
big_sepM_mono
;
eauto
using
equiv_entails
,
equiv_entails_sym
,
lookup_weaken
.
eauto
using
equiv_entails
,
equiv_entails_sym
,
@
lookup_weaken
.
Qed
.
Global
Instance
big_sepM_ne
m
n
:
...
...
This diff is collapsed.
Click to expand it.
program_logic/global_functor.v
+
6
−
4
View file @
4b0dd0df
...
...
@@ -72,8 +72,9 @@ Arguments gFunctorList.cons _ _%gFunctor.
Notation
"[ ]"
:=
gFunctorList
.
nil
(
format
"[ ]"
)
:
gFunctor_scope
.
Notation
"[ F ]"
:=
(
gFunctorList
.
cons
F
gFunctorList
.
nil
)
:
gFunctor_scope
.
Notation
"[ F ; .. ; F' ]"
:=
(
gFunctorList
.
cons
F
.
.
(
gFunctorList
.
cons
F'
gFunctorList
.
nil
)
..)
:
gFunctor_scope
.
Notation
"[ F1 ; F2 ; .. ; Fn ]"
:=
(
gFunctorList
.
cons
F1
(
gFunctorList
.
cons
F2
.
.
(
gFunctorList
.
cons
Fn
gFunctorList
.
nil
)
..))
:
gFunctor_scope
.
Module
gFunctors
.
Definition
nil
:
gFunctors
:=
existT
0
(
fin_0_inv
_)
.
...
...
@@ -92,8 +93,9 @@ End gFunctors.
notation hiding a more complex type. *)
Notation
"#[ ]"
:=
gFunctors
.
nil
(
format
"#[ ]"
)
.
Notation
"#[ Fs ]"
:=
(
gFunctors
.
app
Fs
gFunctors
.
nil
)
.
Notation
"#[ Fs ; .. ; Fs' ]"
:=
(
gFunctors
.
app
Fs
.
.
(
gFunctors
.
app
Fs'
gFunctors
.
nil
)
..)
.
Notation
"#[ Fs1 ; Fs2 ; .. ; Fsn ]"
:=
(
gFunctors
.
app
Fs1
(
gFunctors
.
app
Fs2
.
.
(
gFunctors
.
app
Fsn
gFunctors
.
nil
)
..))
.
(** We need another typeclass to identify the *functor* in the Σ. Basing inG on
the functor breaks badly because Coq is unable to infer the correct
...
...
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