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
7e802184
Commit
7e802184
authored
4 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Fix compilation with Coq master due to undeclared names.
parent
8cdab430
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#33313
passed
4 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theories/numbers.v
+6
-6
6 additions, 6 deletions
theories/numbers.v
with
6 additions
and
6 deletions
theories/numbers.v
+
6
−
6
View file @
7e802184
...
@@ -861,9 +861,9 @@ Proof. rewrite Qcplus_comm. apply Qp_plus_weak_2_r. Qed.
...
@@ -861,9 +861,9 @@ Proof. rewrite Qcplus_comm. apply Qp_plus_weak_2_r. Qed.
Lemma
Qp_max_spec
(
q
p
:
Qp
)
:
(
q
<
p
∧
q
`
max
`
p
=
p
)
∨
(
p
≤
q
∧
q
`
max
`
p
=
q
)
.
Lemma
Qp_max_spec
(
q
p
:
Qp
)
:
(
q
<
p
∧
q
`
max
`
p
=
p
)
∨
(
p
≤
q
∧
q
`
max
`
p
=
q
)
.
Proof
.
Proof
.
unfold
Qp_max
.
destruct
(
decide
(
q
≤
p
))
.
unfold
Qp_max
.
-
destruct
(
Qcle_lt_or_eq
_
_
q0
)
as
[?
|
->%
Qp_eq
]
;
[
left
|
right
];
done
.
destruct
(
decide
(
q
≤
p
)
)
as
[
[
?|
->%
Qp_eq
]
%
Qcle_lt_or_eq
|?];
[
by
auto
..|]
.
-
right
.
split
;
[|
done
]
.
by
apply
Qclt_le_weak
,
Qcnot_le_lt
.
right
.
split
;
[|
done
]
.
by
apply
Qclt_le_weak
,
Qcnot_le_lt
.
Qed
.
Qed
.
Lemma
Qp_max_spec_le
(
q
p
:
Qp
)
:
(
q
≤
p
∧
q
`
max
`
p
=
p
)
∨
(
p
≤
q
∧
q
`
max
`
p
=
q
)
.
Lemma
Qp_max_spec_le
(
q
p
:
Qp
)
:
(
q
≤
p
∧
q
`
max
`
p
=
p
)
∨
(
p
≤
q
∧
q
`
max
`
p
=
q
)
.
...
@@ -907,9 +907,9 @@ Proof. rewrite (comm _ q). apply Qp_max_lub_l. Qed.
...
@@ -907,9 +907,9 @@ Proof. rewrite (comm _ q). apply Qp_max_lub_l. Qed.
Lemma
Qp_min_spec
(
q
p
:
Qp
)
:
(
q
<
p
∧
q
`
min
`
p
=
q
)
∨
(
p
≤
q
∧
q
`
min
`
p
=
p
)
.
Lemma
Qp_min_spec
(
q
p
:
Qp
)
:
(
q
<
p
∧
q
`
min
`
p
=
q
)
∨
(
p
≤
q
∧
q
`
min
`
p
=
p
)
.
Proof
.
Proof
.
unfold
Qp_min
.
destruct
(
decide
(
q
≤
p
))
.
unfold
Qp_min
.
-
destruct
(
Qcle_lt_or_eq
_
_
q0
)
as
[?|
->%
Qp_eq
]
;
[
left
|
right
];
done
.
destruct
(
decide
(
q
≤
p
)
)
as
[
[?|
->%
Qp_eq
]
%
Qcle_lt_or_eq
|?];
[
by
auto
..|]
.
-
right
.
split
;
[|
done
]
.
by
apply
Qclt_le_weak
,
Qcnot_le_lt
.
right
.
split
;
[|
done
]
.
by
apply
Qclt_le_weak
,
Qcnot_le_lt
.
Qed
.
Qed
.
Lemma
Qp_min_spec_le
(
q
p
:
Qp
)
:
(
q
≤
p
∧
q
`
min
`
p
=
q
)
∨
(
p
≤
q
∧
q
`
min
`
p
=
p
)
.
Lemma
Qp_min_spec_le
(
q
p
:
Qp
)
:
(
q
≤
p
∧
q
`
min
`
p
=
q
)
∨
(
p
≤
q
∧
q
`
min
`
p
=
p
)
.
...
...
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