-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed redundant and unused Rel definition Also added the statement that WellFounded is a prop * Defined well-orderings * Better converting from HoTT's extensionality * Moved Woset into its own folder * Details on simulations and that WFs are irrefl * Proof that well-ordered sets form a poset * Constructed well-orderings of an initial segment * Changed operator for initial segment * Proved the type of well-orders is well-founded * Proof that well-orderings are well-ordered * Removed unused import * Basic properties of well-ordered sets * Renamed cardinality to cardinals; defined ordinals Defined operations on ordinals; exponentation remains to be defined. * Renamed properties of simulations * Changed symbols for ordinal order, started sup * Substantial overhaul; better level polymorphism * Fix URL * Prove properties about ordinal arithmetic * Fix missed definition name change * Fix whitespace * Improved comments as per code review
- Loading branch information
Showing
17 changed files
with
1,878 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{-# OPTIONS --safe #-} | ||
module Cubical.Data.Cardinal where | ||
|
||
open import Cubical.Data.Cardinal.Base public | ||
open import Cubical.Data.Cardinal.Properties public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{-# OPTIONS --safe #-} | ||
module Cubical.Data.Ordinal where | ||
|
||
open import Cubical.Data.Ordinal.Base public | ||
open import Cubical.Data.Ordinal.Properties public |
Oops, something went wrong.