-
Notifications
You must be signed in to change notification settings - Fork 138
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
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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
Couple of spare things to clean up, but this should hopefully pass tests now and be ready for more serious review. |
Co-authored-by: Max Horn <[email protected]>
There was a problem hiding this 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...
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
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 |
Perfect, thanks; I will use this for Multipartition until there is demand to convert to a real iterator.
… On 31. Mar 2025, at 3:13 PM, Johannes Schmitt ***@***.***> wrote:
joschmitt
left a comment
(oscar-system/Oscar.jl#4746)
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).
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.
<https://github.com/joschmitt> <#4746 (comment)> <https://github.com/notifications/unsubscribe-auth/AANWIWPSIVJGI67TRPKCNGL2XE5PNAVCNFSM6AAAAABZNMGE2CVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRWGE4TAMJWG4>
joschmitt
left a comment
(oscar-system/Oscar.jl#4746)
<#4746 (comment)>
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 <https://github.com/joschmitt> remembers?
Yes, before the OSCAR 1.0 release, I turned all the return some_array into return (x for x in some_array).
—
Reply to this email directly, view it on GitHub <#4746 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AANWIWPSIVJGI67TRPKCNGL2XE5PNAVCNFSM6AAAAABZNMGE2CVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRWGE4TAMJWG4>.
You are receiving this because you authored the thread.
|
Partition{Int64}[[], [2]] | ||
|
||
julia> collect(multipartitions(2,2)) | ||
5-element Vector{Multipartition{Int64}}: |
There was a problem hiding this comment.
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?
5-element Vector{Multipartition{Int64}}: | |
5-element Vector{Partition{Int64}}: |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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...
There was a problem hiding this comment.
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]
Co-authored-by: Max Horn <[email protected]>
If I compare to what is detailed about the Combinatorics API, I should maybe have a dedicated |
Import
Multipartition
functionality from JuLie.Fixes #4656