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
Terraform modules
Monitor
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
William Mansky
Iris
Commits
86de92cf
Commit
86de92cf
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Elimination of pure facts using Coq introduction patterns for iAssert.
parent
d6dc89b4
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
ProofMode.md
+3
-1
3 additions, 1 deletion
ProofMode.md
proofmode/tactics.v
+11
-3
11 additions, 3 deletions
proofmode/tactics.v
with
14 additions
and
4 deletions
ProofMode.md
+
3
−
1
View file @
86de92cf
...
...
@@ -40,8 +40,10 @@ Context management
`H`
.
-
`iAssert P with "spat" as "ipat"`
: create a new goal with conclusion
`P`
and
put
`P`
in the context of the original goal. The specialization pattern
`spat`
specifies which hypotheses will be consumed by proving
`P`
and t
he
`spat`
specifies which hypotheses will be consumed by proving
`P`
. T
he
introduction pattern
`ipat`
specifies how to eliminate
`P`
.
-
`iAssert P with "spat" as %cpat`
: assert
`P`
and eliminate it using the Coq
introduction pattern
`cpat`
.
Introduction of logical connectives
-----------------------------------
...
...
This diff is collapsed.
Click to expand it.
proofmode/tactics.v
+
11
−
3
View file @
86de92cf
...
...
@@ -833,7 +833,7 @@ Tactic Notation "iLöb" "(" ident(x1) ident(x2) ident(x3) ident(x4)
ltac
:(
iIntros
(
x1
x2
x3
x4
x5
x6
x7
x8
))
.
(** * Assert *)
Tactic
Notation
"iAssert"
open_constr
(
Q
)
"with"
constr
(
Hs
)
"as"
constr
(
pat
)
:=
Tactic
Notation
"iAssert
Core
"
open_constr
(
Q
)
"with"
constr
(
Hs
)
"as"
tactic
(
tac
)
:=
let
H
:=
iFresh
in
let
Hs
:=
spec_pat
.
parse
Hs
in
lazymatch
Hs
with
...
...
@@ -842,7 +842,7 @@ Tactic Notation "iAssert" open_constr(Q) "with" constr(Hs) "as" constr(pat) :=
[
env_cbv
;
reflexivity
|
(*goal*)
|
apply
_
||
fail
"iAssert:"
Q
"not persistent"
|
iDestructHyp
H
as
pat
]
|
tac
H
]
|
[
SGoal
?k
?lr
?Hs
]
=>
eapply
tac_assert
with
_
_
_
lr
Hs
H
Q
_;
(* (js:=Hs) (j:=H) (P:=Q) *)
[
match
k
with
...
...
@@ -851,13 +851,21 @@ Tactic Notation "iAssert" open_constr(Q) "with" constr(Hs) "as" constr(pat) :=
end
|
env_cbv
;
reflexivity
||
fail
"iAssert:"
Hs
"not found"
|
env_cbv
;
reflexivity
|
|
iDestructHyp
H
as
pat
]
|
tac
H
]
|
?pat
=>
fail
"iAssert: invalid pattern"
pat
end
.
Tactic
Notation
"iAssert"
open_constr
(
Q
)
"with"
constr
(
Hs
)
"as"
constr
(
pat
)
:=
iAssertCore
Q
with
Hs
as
(
fun
H
=>
iDestructHyp
H
as
pat
)
.
Tactic
Notation
"iAssert"
open_constr
(
Q
)
"as"
constr
(
pat
)
:=
iAssert
Q
with
"[]"
as
pat
.
Tactic
Notation
"iAssert"
open_constr
(
Q
)
"with"
constr
(
Hs
)
"as"
"%"
simple_intropattern
(
pat
)
:=
iAssertCore
Q
with
Hs
as
(
fun
H
=>
iPure
H
as
pat
)
.
Tactic
Notation
"iAssert"
open_constr
(
Q
)
"as"
"%"
simple_intropattern
(
pat
)
:=
iAssert
Q
with
"[]"
as
%
pat
.
(** * Rewrite *)
Local
Ltac
iRewriteFindPred
:=
match
goal
with
...
...
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