Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add design document on complex number ordering #527

Merged
merged 9 commits into from
Dec 5, 2022
Merged

Conversation

kgryte
Copy link
Contributor

@kgryte kgryte commented Nov 27, 2022

This PR

  • adds a design document on complex number ordering. As complex numbers have no natural order, the specification does not require that conforming implementations adopt any particular ordering convention. While ordering APIs are restricted to real-valued data types, conforming implementations are permitted to implement an ordering for reasons of backward compatibility; however, ordering is not guaranteed to be portable across implementations.
  • adds notes to ordering APIs (less, less_equal, greater, greater_equal, argmin, argmax, argsort, sort, min, max) documenting that inequality comparison of complex numbers is unspecified and thus implementation-dependent.
  • specifies that argsort and sort should only accept real-valued data types. The current specification does not restrict the input data types for argsort and sort, but does restrict argmin and argmax to real-valued data types. This PR updates argsort and sort to align with argmin and argmax, as boolean values have no natural ordering. The divergence was likely an oversight.

Prior Art

In general, because complex numbers have no natural ordering, ordering APIs supporting complex numbers inevitably lead to unintuitive results, as documented on the NumPy issue tracker. The general gist there is that ordering complex numbers should be deprecated, with only specialized support (with support for customized sort order) for complex number ordering when wanting to sort a complex number array.

@kgryte kgryte added API change Changes to existing functions or objects in the API. Narrative Content Narrative documentation content. topic: Complex Data Types Complex number data types. labels Nov 27, 2022
@kgryte kgryte added this to the v2022 milestone Nov 27, 2022
Copy link
Member

@rgommers rgommers left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This LGTM, thanks @kgryte.

Copy link
Member

@rgommers rgommers left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The main points here, as listed in the PR description, were reviewed also in a call last Thursday, and there was general approval that this is the right approach. So in it goes.

@rgommers
Copy link
Member

rgommers commented Dec 5, 2022

One thing to consider is to merge the content in this PR and the page on branch cuts in a single "complex number support" page. I'll add that to the list of content refactor tasks in gh-533.

@rgommers rgommers merged commit 857e6ad into main Dec 5, 2022
@rgommers rgommers deleted the cmplx-ordering branch December 5, 2022 16:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
API change Changes to existing functions or objects in the API. Narrative Content Narrative documentation content. topic: Complex Data Types Complex number data types.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants