Skip to content

Commit

Permalink
Merge pull request #859 from affeldt-aist/ereal_20220227
Browse files Browse the repository at this point in the history
\bar R canonicals for tblattice
  • Loading branch information
proux01 authored Feb 28, 2023
2 parents b82b9c3 + 6324d33 commit 0e392b5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

### Added

- in `contructive_ereal.v`:
+ lemmas `ereal_blatticeMixin`, `ereal_tblatticeMixin`
+ canonicals `ereal_blatticeType`, `ereal_tblatticeType`

### Changed

### Renamed
Expand Down
10 changes: 10 additions & 0 deletions theories/constructive_ereal.v
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,16 @@ Canonical ereal_latticeType := LatticeType (extended R) le_total_ereal.
Canonical ereal_distrLatticeType := DistrLatticeType (extended R) le_total_ereal.
Canonical ereal_orderType := OrderType (extended R) le_total_ereal.

Lemma ereal_blatticeMixin :
Order.BLattice.mixin_of (Order.POrder.class (@ereal_porderType R)).
Proof. by exists -oo; exact leNye. Qed.
Canonical ereal_blatticeType := BLatticeType (extended R) ereal_blatticeMixin.

Lemma ereal_tblatticeMixin :
Order.TBLattice.mixin_of (Order.POrder.class ereal_blatticeType).
Proof. by exists +oo; exact leey. Qed.
Canonical ereal_tblatticeType := TBLatticeType (extended R) ereal_tblatticeMixin.

End ERealOrder_realDomainType.

Section ERealArith.
Expand Down

0 comments on commit 0e392b5

Please sign in to comment.