Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rodolphe Lepigre
stdpp
Commits
26088f98
Commit
26088f98
authored
Jan 25, 2019
by
Robbert Krebbers
Browse files
More documentation for solve_proper_prepare + introduce more.
parent
8d3d0713
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/tactics.v
View file @
26088f98
...
...
@@ -347,7 +347,18 @@ Ltac solve_proper_prepare :=
|
|-
Proper
_
_
=>
intros
???
|
|-
(
_
==>
_
)%
signature
_
_
=>
intros
???
|
|-
pointwise_relation
_
_
_
_
=>
intros
?
|
|-
?R
?f
_
=>
let
f'
:
=
constr
:
(
λ
x
,
f
x
)
in
intros
?
|
|-
?R
?f
_
=>
(* Deal with other cases where we have an equivalence relation on functions
(e.g. a [pointwise_relation] that is hidden in some form in [R]). We do
this by checking if the arguments of the relation are actually functions,
and then forcefully introduce one ∀ and introduce the remaining ∀s that
show up in the goal. To check that we actually have an equivalence relation
on functions, we try to eta expand [f], which will only succeed if [f] is
actually a function. *)
let
f'
:
=
constr
:
(
λ
x
y
,
f
x
y
)
in
(* Now forcefully introduce the first ∀ and other ∀s that show up in the
goal afterwards. *)
intros
?
;
intros
end
;
simplify_eq
;
(* We try with and without unfolding. We have to backtrack on
that because unfolding may succeed, but then the proof may fail. *)
...
...
Write
Preview
Supports
Markdown
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