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
Merge requests
!471
Add ssreflect file (from Iris).
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add ssreflect file (from Iris).
robbert/ssreflect
into
master
Overview
3
Commits
2
Pipelines
3
Changes
1
All threads resolved!
Hide all comments
Merged
Robbert Krebbers
requested to merge
robbert/ssreflect
into
master
1 year ago
Overview
3
Commits
2
Pipelines
3
Changes
1
All threads resolved!
Hide all comments
Expand
This closes issue
#177 (closed)
.
Edited
1 year ago
by
Robbert Krebbers
0
0
Merge request reports
Viewing commit
e2b331bb
Prev
Next
Show latest version
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e2b331bb
CHANGELOG.
· e2b331bb
Robbert Krebbers
authored
1 year ago
stdpp/ssreflect.v
0 → 100644
+
14
−
0
Options
(** This file provides support for using std++ in combination with the ssreflect
tactics. It patches up some global options of ssreflect. *)
From
Coq
.
ssr
Require
Export
ssreflect
.
From
stdpp
Require
Export
prelude
.
From
stdpp
Require
Import
options
.
(** Restore Coq's normal "if" scope, ssr redefines it. *)
Global
Open
Scope
general_if_scope
.
(** See Coq issue #5706 *)
Global
Set
SsrOldRewriteGoalsOrder
.
(** Overwrite ssr's [done] tactic with ours *)
Ltac
done
:=
stdpp
.
tactics
.
done
.
Loading