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
6aa72baa
Commit
6aa72baa
authored
2 years ago
by
Ralf Jung
Committed by
Robbert Krebbers
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Apply 2 suggestion(s) to 2 file(s)
parent
8e824e47
Branches
Branches containing commit
No related tags found
1 merge request
!428
Tweak `f_equiv` to use `reflexivity` in a way similar to `f_equal`.
Pipeline
#74819
canceled
2 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+3
-2
3 additions, 2 deletions
CHANGELOG.md
stdpp/tactics.v
+1
-1
1 addition, 1 deletion
stdpp/tactics.v
with
4 additions
and
3 deletions
CHANGELOG.md
+
3
−
2
View file @
6aa72baa
...
...
@@ -8,8 +8,9 @@ API-breaking change is listed.
`difference_difference_r`
and
`difference_difference_r_L`
.
-
Let
`set_solver`
use
`eauto`
(instead of
`idtac`
) as its default solver.
-
Add tactic
`tc_solve`
(this was
`iSolveTC`
in Iris).
-
Let
`f_equiv`
to use
`reflexivity`
in a way similar to
`f_equal`
. That is,
let
`f_equiv`
solve goals and subgoals of the form
`R x x`
.
-
Change
`f_equiv`
to use
`reflexivity`
in a way similar to
`f_equal`
. That is,
let
`f_equiv`
solve goals and subgoals of the form
`R x x`
. However, we use
a restricted
`fast_reflexivity`
as full
`reflexivity`
can be quite expensive.
The following
`sed`
script should perform most of the renaming
(on macOS, replace
`sed`
by
`gsed`
, installed via e.g.
`brew install gnu-sed`
).
...
...
This diff is collapsed.
Click to expand it.
stdpp/tactics.v
+
1
−
1
View file @
6aa72baa
...
...
@@ -438,7 +438,7 @@ Ltac f_equiv :=
(* Similar to [f_equal] also handle the reflexivity case. *)
|
|
-
_
?x
?x
=>
fast_reflexivity
end
;
(* Similar to [f_equal] immediately solve trivial
solve
goals *)
(* Similar to [f_equal] immediately solve trivial goals *)
try
fast_reflexivity
.
Tactic
Notation
"f_equiv"
"/="
:=
csimpl
in
*
;
f_equiv
.
...
...
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