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
4952cca2
Commit
4952cca2
authored
8 years ago
by
Ralf Jung
Browse files
Options
Downloads
Patches
Plain Diff
make done and fast_done more consistent in behavior
In particular, make sure we always try eassumption before reflexivity.
parent
c15a1ba4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/tactics.v
+15
-11
15 additions, 11 deletions
theories/tactics.v
with
15 additions
and
11 deletions
theories/tactics.v
+
15
−
11
View file @
4952cca2
...
...
@@ -40,7 +40,11 @@ Tactic Notation "intuition" := intuition auto.
we have x = y in the context, we will typically want to use the
assumption and not reflexivity *)
Ltac
fast_done
:=
solve
[
eassumption
|
symmetry
;
eassumption
|
reflexivity
]
.
solve
[
eassumption
|
symmetry
;
eassumption
|
apply
not_symmetry
;
eassumption
|
reflexivity
]
.
Tactic
Notation
"fast_by"
tactic
(
tac
)
:=
tac
;
fast_done
.
...
...
@@ -50,16 +54,21 @@ to Ssreflect's [done], it does not compute the goal's [hnf] so as to avoid
unfolding setoid equalities. Note that this tactic performs much better than
Coq's [easy] tactic as it does not perform [inversion]. *)
Ltac
done
:=
trivial
;
intros
;
solve
solve
[
repeat
first
[
fast_done
|
solve
[
trivial
]
(* All the tactics below will introduce themselves anyway, or make no sense
for goals of product type. So this is a good place for us to do it. *)
|
progress
intros
|
solve
[
symmetry
;
trivial
]
|
solve
[
apply
not_symmetry
;
trivial
]
|
discriminate
|
contradiction
|
solve
[
apply
not_symmetry
;
trivial
]
|
split
]
|
match
goal
with
H
:
¬
_
|
-
_
=>
solve
[
case
H
;
trivial
]
end
]
.
|
split
|
match
goal
with
H
:
¬
_
|
-
_
=>
case
H
;
clear
H
;
done
end
]
]
.
Tactic
Notation
"by"
tactic
(
tac
)
:=
tac
;
done
.
...
...
@@ -477,12 +486,7 @@ Tactic Notation "naive_solver" tactic(tac) :=
(**i simplify and solve equalities *)
|
|
-
_
=>
progress
simplify_eq
/=
(**i solve the goal *)
|
|
-
_
=>
solve
[
eassumption
|
symmetry
;
eassumption
|
apply
not_symmetry
;
eassumption
|
reflexivity
]
|
|
-
_
=>
fast_done
(**i operations that generate more subgoals *)
|
|
-
_
∧
_
=>
split
|
|
-
Is_true
(
bool_decide
_)
=>
apply
(
bool_decide_pack
_)
...
...
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