Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Dmitry Khalanskiy
Iris
Commits
aa2985b4
Commit
aa2985b4
authored
Dec 21, 2018
by
Robbert Krebbers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some indentation in `iInv`.
parent
04df38b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
22 deletions
+21
-22
theories/proofmode/ltac_tactics.v
theories/proofmode/ltac_tactics.v
+21
-22
No files found.
theories/proofmode/ltac_tactics.v
View file @
aa2985b4
...
...
@@ -2197,39 +2197,39 @@ Tactic Notation "iInvCore" constr(N) "in" tactic(tac) :=
(* With everything *)
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
pat
).
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
pat
).
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
)
pat
).
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
)
pat
).
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
x2
)
pat
).
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
x2
)
pat
).
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
x2
x3
)
pat
).
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
x2
x3
)
pat
).
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
simple_intropattern
(
x4
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
x2
x3
x4
)
pat
).
iInvCore
N
with
Hs
as
(
Some
Hclose
)
in
(
fun
x
H
=>
iDestructHyp
H
as
(
x1
x2
x3
x4
)
pat
).
(* Without closing view shift *)
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
constr
(
pat
)
:
=
iInvCore
N
with
Hs
in
iInvCore
N
with
Hs
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
pat
|
_
=>
fail
"Missing intro pattern for accessor variable"
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
")"
constr
(
pat
)
:
=
iInvCore
N
with
Hs
in
iInvCore
N
with
Hs
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
pat
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
")"
constr
(
pat
)
:
=
iInvCore
N
with
Hs
in
iInvCore
N
with
Hs
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
)
pat
...
...
@@ -2237,7 +2237,7 @@ Tactic Notation "iInv" constr(N) "with" constr(Hs) "as" "(" simple_intropattern(
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
")"
constr
(
pat
)
:
=
iInvCore
N
with
Hs
in
iInvCore
N
with
Hs
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
x3
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
x3
)
pat
...
...
@@ -2245,7 +2245,7 @@ Tactic Notation "iInv" constr(N) "with" constr(Hs) "as" "(" simple_intropattern(
Tactic
Notation
"iInv"
constr
(
N
)
"with"
constr
(
Hs
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
simple_intropattern
(
x4
)
")"
constr
(
pat
)
:
=
iInvCore
N
with
Hs
in
iInvCore
N
with
Hs
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
x3
x4
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
x3
x4
)
pat
...
...
@@ -2253,21 +2253,21 @@ Tactic Notation "iInv" constr(N) "with" constr(Hs) "as" "(" simple_intropattern(
(* Without pattern *)
Tactic
Notation
"iInv"
constr
(
N
)
"as"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
as
(
Some
Hclose
)
in
iInvCore
N
as
(
Some
Hclose
)
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
pat
|
_
=>
fail
"Missing intro pattern for accessor variable"
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
as
(
Some
Hclose
)
in
iInvCore
N
as
(
Some
Hclose
)
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
pat
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
as
(
Some
Hclose
)
in
iInvCore
N
as
(
Some
Hclose
)
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
)
pat
...
...
@@ -2275,7 +2275,7 @@ Tactic Notation "iInv" constr(N) "as" "(" simple_intropattern(x1)
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
as
(
Some
Hclose
)
in
iInvCore
N
as
(
Some
Hclose
)
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
x3
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
x3
)
pat
...
...
@@ -2283,7 +2283,7 @@ Tactic Notation "iInv" constr(N) "as" "(" simple_intropattern(x1)
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
simple_intropattern
(
x4
)
")"
constr
(
pat
)
constr
(
Hclose
)
:
=
iInvCore
N
as
(
Some
Hclose
)
in
iInvCore
N
as
(
Some
Hclose
)
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
x3
x4
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
x3
x4
)
pat
...
...
@@ -2291,29 +2291,28 @@ Tactic Notation "iInv" constr(N) "as" "(" simple_intropattern(x1)
(* Without both *)
Tactic
Notation
"iInv"
constr
(
N
)
"as"
constr
(
pat
)
:
=
iInvCore
N
in
iInvCore
N
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
pat
|
_
=>
fail
"Missing intro pattern for accessor variable"
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
")"
constr
(
pat
)
:
=
iInvCore
N
in
iInvCore
N
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
pat
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
")"
constr
(
pat
)
:
=
iInvCore
N
in
iInvCore
N
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
)
pat
end
).
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
")"
constr
(
pat
)
:
=
iInvCore
N
in
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
")"
constr
(
pat
)
:
=
iInvCore
N
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
x3
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
x3
)
pat
...
...
@@ -2321,7 +2320,7 @@ Tactic Notation "iInv" constr(N) "as" "(" simple_intropattern(x1)
Tactic
Notation
"iInv"
constr
(
N
)
"as"
"("
simple_intropattern
(
x1
)
simple_intropattern
(
x2
)
simple_intropattern
(
x3
)
simple_intropattern
(
x4
)
")"
constr
(
pat
)
:
=
iInvCore
N
in
iInvCore
N
in
(
fun
x
H
=>
lazymatch
type
of
x
with
|
unit
=>
destruct
x
as
[]
;
iDestructHyp
H
as
(
x1
x2
x3
x4
)
pat
|
_
=>
revert
x
;
intros
x1
;
iDestructHyp
H
as
(
x2
x3
x4
)
pat
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment