Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stdpp
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
Model registry
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
Iris
stdpp
Commits
0710439b
Commit
0710439b
authored
4 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
fmt
parent
609de3aa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!218
add rename-by-pattern tactic
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/tactics.v
+5
-5
5 additions, 5 deletions
tests/tactics.v
with
5 additions
and
5 deletions
tests/tactics.v
+
5
−
5
View file @
0710439b
From
stdpp
Require
Import
tactics
.
Goal
forall
P1
P2
P3
P4
(
P
:
Prop
),
Goal
∀
P1
P2
P3
P4
(
P
:
Prop
),
P1
∨
(
Is_true
(
P2
||
P3
))
∨
P4
→
(
P1
→
P
)
→
(
P2
→
P
)
→
...
...
@@ -12,7 +12,7 @@ Proof.
destruct_or
?
HH
;
[
exact
(
X1
HH
)
|
exact
(
X2
HH
)
|
exact
(
X3
HH
)
|
exact
(
X4
HH
)
]
.
Qed
.
Goal
forall
P1
P2
P3
P4
(
P
:
Prop
),
Goal
∀
P1
P2
P3
P4
(
P
:
Prop
),
P1
∨
P2
→
P3
∨
P4
→
(
P1
→
P3
→
P
)
→
...
...
@@ -25,7 +25,7 @@ Proof.
destruct_or
?;
[
exact
(
X1
HH1
HH2
)
|
exact
(
X3
HH1
HH2
)
|
exact
(
X2
HH1
HH2
)
|
exact
(
X4
HH1
HH2
)
]
.
Qed
.
Goal
forall
P1
P2
P3
P4
(
P
:
Prop
),
Goal
∀
P1
P2
P3
P4
(
P
:
Prop
),
id
(
P1
∨
P2
)
→
id
(
P3
∨
P4
)
→
(
P1
→
P3
→
P
)
→
...
...
@@ -41,7 +41,7 @@ Proof.
[
exact
(
X1
HH1
HH2
)
|
exact
(
X2
HH1
HH2
)
|
exact
(
X3
HH1
HH2
)
|
exact
(
X4
HH1
HH2
)
]
.
Qed
.
Goal
forall
P1
P2
P3
P4
,
Goal
∀
P1
P2
P3
P4
,
P1
∧
(
Is_true
(
P2
&&
P3
))
∧
P4
→
P1
∧
P2
∧
P3
.
Proof
.
...
...
@@ -49,5 +49,5 @@ Proof.
destruct_and
?
.
Fail
destruct_and
!.
assumption
.
Qed
.
Goal
forall
(
n
:
nat
),
∃
m
:
nat
,
True
.
Goal
∀
(
n
:
nat
),
∃
m
:
nat
,
True
.
Proof
.
intros
?
.
rename
select
nat
into
m
.
exists
m
.
done
.
Qed
.
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