Skip to content

Commit

Permalink
Make supertype implicit in raise-subtype (#1281)
Browse files Browse the repository at this point in the history
This seems redundant in practice from my attempts to use it.
  • Loading branch information
lowasser authored Feb 5, 2025
1 parent eb58aa1 commit 83e7741
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/foundation/raising-universe-levels.lagda.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,12 @@ pr2 (raise-Set l A) =

```agda
raise-subtype :
(l : Level) {l1 l2 : Level} (A : UU l1) subtype l2 A subtype (l2 ⊔ l) A
raise-subtype l A B x = raise-Prop l (B x)
(l : Level)
{l1 l2 : Level}
{A : UU l1}
subtype l2 A
subtype (l2 ⊔ l) A
raise-subtype l B x = raise-Prop l (B x)
```

### Raising equivalent types
Expand Down

0 comments on commit 83e7741

Please sign in to comment.