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
Iris
Iris
Commits
01d12014
Commit
01d12014
authored
Jan 09, 2017
by
Ralf Jung
Browse files
let solve_inG handle higher-arity functions for the \Sigma
parent
be81fb92
Pipeline
#3651
passed with stage
in 10 minutes and 54 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
theories/base_logic/lib/own.v
View file @
01d12014
...
...
@@ -21,8 +21,11 @@ Proof. move=> /(_ 0%fin) /= [j ->]. by exists j. Qed.
Ltac
solve_inG
:
=
(* Get all assumptions *)
intros
;
(* Unfold the top-level xΣ *)
(* Unfold the top-level xΣ
. We need to support this to be a function.
*)
lazymatch
goal
with
|
H
:
subG
(
?x
Σ
_
_
_
_
)
_
|-
_
=>
try
unfold
x
Σ
in
H
|
H
:
subG
(
?x
Σ
_
_
_
)
_
|-
_
=>
try
unfold
x
Σ
in
H
|
H
:
subG
(
?x
Σ
_
_
)
_
|-
_
=>
try
unfold
x
Σ
in
H
|
H
:
subG
(
?x
Σ
_
)
_
|-
_
=>
try
unfold
x
Σ
in
H
|
H
:
subG
?x
Σ
_
|-
_
=>
try
unfold
x
Σ
in
H
end
;
...
...
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