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
!296
Do not call `done` recursively when solving `is_Some`.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Do not call `done` recursively when solving `is_Some`.
robbert/done_is_Some_non_rec
into
master
Overview
7
Commits
4
Pipelines
3
Changes
2
All threads resolved!
Show all comments
Merged
Robbert Krebbers
requested to merge
robbert/done_is_Some_non_rec
into
master
3 years ago
Overview
7
Commits
4
Pipelines
3
Changes
2
All threads resolved!
Show all comments
Expand
!293 (merged)
broke Iris, this MR fixes that.
0
0
Merge request reports
Compare
master
version 2
967cda05
3 years ago
version 1
fe9fe32a
3 years ago
master (base)
and
latest version
latest version
53a108a6
4 commits,
3 years ago
version 2
967cda05
3 commits,
3 years ago
version 1
fe9fe32a
2 commits,
3 years ago
2 files
+
12
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
tests/tactics.v
+
10
−
1
Options
From
stdpp
Require
Import
tactics
.
From
stdpp
Require
Import
tactics
option
.
Goal
∀
P1
P2
P3
P4
(
P
:
Prop
),
P1
∨
(
Is_true
(
P2
||
P3
))
∨
P4
→
@@ -69,3 +69,12 @@ universe, like [Is_true : bool → Prop]. *)
Goal
True
.
let
x
:=
mk_evar
true
in
idtac
.
Abort
.
(** Make sure that [done] is not called recursively when solving [is_Some],
which might leave an unresolved evar before performing ex falso. *)
Goal
False
→
is_Some
(
@
None
nat
)
.
Proof
.
done
.
Qed
.
Goal
∀
mx
,
mx
=
Some
10
→
is_Some
mx
.
Proof
.
done
.
Qed
.
Goal
∀
mx
,
Some
10
=
mx
→
is_Some
mx
.
Proof
.
done
.
Qed
.
Loading