Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- Impred: Set constructor o for quantifying over propositions
- Epsilon: Hilbert's ε operator
- List: add iota and indexes
- Set: add ι:Set
- Set: add ι:Set and an axiom el:Π a,τ a saying that every set is non-empty
- Pos, Z: add printing to decimal notation

### Changed
Expand Down
4 changes: 4 additions & 0 deletions Set.lp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ injective symbol τ : Set → TYPE; // `t or \tau

builtin "T" ≔ τ;

// We assume that sets are non-empty

symbol el a : τ a;

// Cartesian product

constant symbol × : Set → Set → Set; notation × infix right 10; // \times
Expand Down