Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Actris
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Iris
Actris
Commits
464439c6
Commit
464439c6
authored
5 years ago
by
Jonas Kastberg Hinrichsen
Browse files
Options
Downloads
Patches
Plain Diff
Removed involutive file
parent
80b8d626
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
_CoqProject
+0
-1
0 additions, 1 deletion
_CoqProject
theories/encodings/stype.v
+2
-2
2 additions, 2 deletions
theories/encodings/stype.v
theories/typing/involutive.v
+0
-4
0 additions, 4 deletions
theories/typing/involutive.v
theories/typing/stype.v
+3
-1
3 additions, 1 deletion
theories/typing/stype.v
with
5 additions
and
8 deletions
_CoqProject
+
0
−
1
View file @
464439c6
-Q theories osiris
-Q theories osiris
-arg -w -arg -notation-overridden,-redundant-canonical-projection,-several-object-files
-arg -w -arg -notation-overridden,-redundant-canonical-projection,-several-object-files
theories/typing/involutive.v
theories/typing/side.v
theories/typing/side.v
theories/typing/stype.v
theories/typing/stype.v
theories/encodings/encodable.v
theories/encodings/encodable.v
...
...
This diff is collapsed.
Click to expand it.
theories/encodings/stype.v
+
2
−
2
View file @
464439c6
...
@@ -206,7 +206,7 @@ Section stype.
...
@@ -206,7 +206,7 @@ Section stype.
by
iRewrite
"Heq"
in
"Heval"
.
by
iRewrite
"Heq"
in
"Heval"
.
-
iRewrite
"Heq"
in
"Heval"
.
destruct
r
as
[|
vr
r
]=>
//=.
-
iRewrite
"Heq"
in
"Heval"
.
destruct
r
as
[|
vr
r
]=>
//=.
iSplit
;
first
done
.
iSplit
;
first
done
.
iRewrite
"Heval"
.
simpl
.
iFrame
"HP"
.
by
rewrite
involutive
.
}
iRewrite
"Heval"
.
simpl
.
iFrame
"HP"
.
by
rewrite
dual_stype_
involutive
.
}
iModIntro
.
iFrame
.
auto
.
iModIntro
.
iFrame
.
auto
.
-
iExists
_
.
-
iExists
_
.
iIntros
"{$Hcrf} !>"
(
v
)
"HP Hcrf"
.
iIntros
"{$Hcrf} !>"
(
v
)
"HP Hcrf"
.
...
@@ -220,7 +220,7 @@ Section stype.
...
@@ -220,7 +220,7 @@ Section stype.
iDestruct
"Hinv'"
as
"[[-> Heval]|[-> Heval]]"
.
iDestruct
"Hinv'"
as
"[[-> Heval]|[-> Heval]]"
.
-
iRewrite
"Heq"
in
"Heval"
.
destruct
l
as
[|
vl
l
]=>
//.
-
iRewrite
"Heq"
in
"Heval"
.
destruct
l
as
[|
vl
l
]=>
//.
iSplit
;
first
done
.
simpl
.
iSplit
;
first
done
.
simpl
.
iRewrite
"Heval"
.
simpl
.
iFrame
"HP"
.
by
rewrite
involutive
.
iRewrite
"Heval"
.
simpl
.
iFrame
"HP"
.
by
rewrite
dual_stype_
involutive
.
-
iSplit
=>
//.
-
iSplit
=>
//.
iApply
(
st_eval_send
with
"HP"
)
.
iApply
(
st_eval_send
with
"HP"
)
.
by
iRewrite
"Heq"
in
"Heval"
.
}
by
iRewrite
"Heq"
in
"Heval"
.
}
...
...
This diff is collapsed.
Click to expand it.
theories/typing/involutive.v
deleted
100644 → 0
+
0
−
4
View file @
80b8d626
From
iris
.
heap_lang
Require
Import
proofmode
notation
.
Class
Involutive
{
A
}
(
R
:
relation
A
)
(
f
:
A
→
A
)
:=
involutive
x
:
R
(
f
(
f
x
))
x
.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
theories/typing/stype.v
+
3
−
1
View file @
464439c6
...
@@ -4,9 +4,11 @@ From stdpp Require Export list.
...
@@ -4,9 +4,11 @@ From stdpp Require Export list.
From
iris
.
base_logic
Require
Import
base_logic
.
From
iris
.
base_logic
Require
Import
base_logic
.
From
iris
.
algebra
Require
Import
updates
local_updates
.
From
iris
.
algebra
Require
Import
updates
local_updates
.
From
iris
.
heap_lang
Require
Import
proofmode
notation
.
From
iris
.
heap_lang
Require
Import
proofmode
notation
.
From
osiris
.
typing
Require
Import
involutive
.
Set
Default
Proof
Using
"Type"
.
Set
Default
Proof
Using
"Type"
.
Class
Involutive
{
A
}
(
R
:
relation
A
)
(
f
:
A
→
A
)
:=
involutive
x
:
R
(
f
(
f
x
))
x
.
Inductive
action
:=
Send
|
Receive
.
Inductive
action
:=
Send
|
Receive
.
Instance
action_inhabited
:
Inhabited
action
:=
populate
Send
.
Instance
action_inhabited
:
Inhabited
action
:=
populate
Send
.
Definition
dual_action
(
a
:
action
)
:
action
:=
Definition
dual_action
(
a
:
action
)
:
action
:=
...
...
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