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

Import Multipartition functionality from JuLie #4746

Open
wants to merge 47 commits into
base: master
Choose a base branch
from

Conversation

mjrodgers
Copy link
Collaborator

Import Multipartition functionality from JuLie.
Fixes #4656

Copy link
Member

@fingolfin fingolfin left a comment

Choose a reason for hiding this comment

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

Thank you for getting this started! Now we need to clean this up some more

@mjrodgers
Copy link
Collaborator Author

Couple of spare things to clean up, but this should hopefully pass tests now and be ready for more serious review.

@mjrodgers mjrodgers marked this pull request as ready for review March 26, 2025 16:21
Copy link
Member

@fingolfin fingolfin left a comment

Choose a reason for hiding this comment

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

Thank you this is shaping up quite well! A few more tweaks as suggested by Lars...

@thofma
Copy link
Collaborator

thofma commented Mar 31, 2025

I vaguely remember that we used artificial iterators to make the API "stable" (even if we don't have a proper iterator yet). Maybe @joschmitt remembers?

@joschmitt
Copy link
Member

I vaguely remember that we used artificial iterators to make the API "stable" (even if we don't have a proper iterator yet). Maybe @joschmitt remembers?

Yes, before the OSCAR 1.0 release, I turned all the return some_array into return (x for x in some_array).

@mjrodgers
Copy link
Collaborator Author

mjrodgers commented Mar 31, 2025 via email

Partition{Int64}[[], [2]]

julia> collect(multipartitions(2,2))
5-element Vector{Multipartition{Int64}}:
Copy link
Member

Choose a reason for hiding this comment

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

Is this perhaps like this?

Suggested change
5-element Vector{Multipartition{Int64}}:
5-element Vector{Partition{Int64}}:

Copy link
Member

Choose a reason for hiding this comment

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

But CI test pass... It seems I am misunderstanding something... huh

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I agree that it seems like this should be Vector{Multipartition}, this definitely passes CI but that doesn't mean that it's what we want... I'm looking at it now.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Ah okay, I understand the confusion. multipartitions returns ALL the multipartitions of n into r parts, so we get a Vector{Multipartition}. While each individual Multipartion looks like a Vector{Partition}. So this is all correct.

Copy link
Member

Choose a reason for hiding this comment

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

Ahah I get it now:

julia> foo = collect(MP)
5-element Vector{Multipartition{Int64}}:
 Partition{Int64}[[], [2]]
 Partition{Int64}[[], [1, 1]]
 Partition{Int64}[[1], [1]]
 Partition{Int64}[[2], []]
 Partition{Int64}[[1, 1], []]

julia> typeof(foo)
Vector{Multipartition{Int64}} (alias for Array{Multipartition{Int64}, 1})

julia> foo[1]
Partition{Int64}[[], [2]]

julia> typeof(foo[1])
Multipartition{Int64}

So my confusion is that Multipartition is printed as a Vector{Partition}. Which makes some sense, but at least for me it would be easier to understand what is going on if there was a custom show` method...

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I can do this but I'm not sure what it should look like. We have the same issue with Partition printing as Vector{Int}:

julia> P = partition(6, 4, 4, 2)
[6, 4, 4, 2]

@mjrodgers
Copy link
Collaborator Author

If I compare to what is detailed about the Combinatorics API, I should maybe have a dedicated Multipartitions type that is a wrapper around the iterator returned by multipartitions, with a dedicated show method. I think this should be pretty straightforward.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Integration of multipartition combinatorics to Oscar
5 participants