Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
cpdt
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
research
cpdt
Commits
f889978a
Commit
f889978a
authored
Oct 08, 2008
by
Adam Chlipala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crush' pursues trivial inversions
parent
2cadc205
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
Tactics.v
src/Tactics.v
+8
-5
No files found.
src/Tactics.v
View file @
f889978a
...
...
@@ -42,6 +42,9 @@ Ltac all f ls :=
end
.
Ltac
simplHyp
invOne
:=
let
invert
H
F
:=
inList
F
invOne
;
(
inversion
H
;
fail
)
||
(
inversion
H
;
[
idtac
]
;
clear
H
;
try
subst
)
in
match
goal
with
|
[
H
:
ex
_
|-
_
]
=>
destruct
H
...
...
@@ -54,11 +57,11 @@ Ltac simplHyp invOne :=
|
[
|-
_
=
_
->
_
=
_
->
_
]
=>
try
clear
H
;
intros
;
try
subst
end
|
[
H
:
?
F
_
|-
_
]
=>
in
List
F
invOne
;
inversion
H
;
[
idtac
]
;
clear
H
;
try
subst
|
[
H
:
?
F
_
_
|-
_
]
=>
in
List
F
invOne
;
inversion
H
;
[
idtac
]
;
clear
H
;
try
subst
|
[
H
:
?
F
_
_
_
|-
_
]
=>
in
List
F
invOne
;
inversion
H
;
[
idtac
]
;
clear
H
;
try
subst
|
[
H
:
?
F
_
_
_
_
|-
_
]
=>
in
List
F
invOne
;
inversion
H
;
[
idtac
]
;
clear
H
;
try
subst
|
[
H
:
?
F
_
_
_
_
_
|-
_
]
=>
in
List
F
invOne
;
inversion
H
;
[
idtac
]
;
clear
H
;
try
subst
|
[
H
:
?
F
_
|-
_
]
=>
in
vert
H
F
|
[
H
:
?
F
_
_
|-
_
]
=>
in
vert
H
F
|
[
H
:
?
F
_
_
_
|-
_
]
=>
in
vert
H
F
|
[
H
:
?
F
_
_
_
_
|-
_
]
=>
in
vert
H
F
|
[
H
:
?
F
_
_
_
_
_
|-
_
]
=>
in
vert
H
F
end
.
Ltac
rewriteHyp
:=
...
...
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