diff options
| author | Théo Zimmermann | 2019-05-03 18:24:24 +0200 |
|---|---|---|
| committer | Théo Zimmermann | 2019-05-03 18:24:24 +0200 |
| commit | 01f2816cb72a4c94a162f76d6bfad92f906e2630 (patch) | |
| tree | 32c2efecd97f0e483c24508824ffbbe13ceb45b7 | |
| parent | a37d1c0e433f34d0ab5357b1f78eb0e04d961dc8 (diff) | |
| parent | 75dace920133e147abd6463645068b52f431a690 (diff) | |
Merge PR #9984: Add PairUsualDecidableTypeFull
Reviewed-by: herbelin
| -rw-r--r-- | CHANGES.md | 2 | ||||
| -rw-r--r-- | theories/Structures/EqualitiesFacts.v | 11 |
2 files changed, 13 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md index 3c8070d585..5ca16ae1fe 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -45,6 +45,8 @@ Unreleased changes **Standard library** +- Added Coq.Structures.EqualitiesFacts.PairUsualDecidableTypeFull + **Infrastructure and dependencies** diff --git a/theories/Structures/EqualitiesFacts.v b/theories/Structures/EqualitiesFacts.v index c738b57f44..0f63855b55 100644 --- a/theories/Structures/EqualitiesFacts.v +++ b/theories/Structures/EqualitiesFacts.v @@ -212,3 +212,14 @@ Module PairUsualDecidableType(D1 D2:UsualDecidableType) <: UsualDecidableType. Defined. End PairUsualDecidableType. + +(** And also for pairs of UsualDecidableTypeFull *) + +Module PairUsualDecidableTypeFull (D1 D2:UsualDecidableTypeFull) + <: UsualDecidableTypeFull. + + Module M := PairUsualDecidableType D1 D2. + Include Backport_DT (M). + Include HasEqDec2Bool. + +End PairUsualDecidableTypeFull. |
