Skip to content

Commit

Permalink
feat: add support for not-equals in exists (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben-VandeVelde authored Nov 25, 2023
1 parent 3044327 commit a652e09
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Std/Util/ExtendedBinder.lean
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,5 @@ binder_predicate x " ≥ " y:term => `($x ≥ $y)
binder_predicate x " < " y:term => `($x < $y)
/-- Declare `∃ x ≤ y, ...` as syntax for `∃ x, x ≤ y ∧ ...` -/
binder_predicate x " ≤ " y:term => `($x ≤ $y)
/-- Declare `∃ x ≠ y, ...` as syntax for `∃ x, x ≠ y ∧ ...` -/
binder_predicate x " ≠ " y:term => `($x ≠ $y)

0 comments on commit a652e09

Please sign in to comment.