Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 #4746base: master
Are you sure you want to change the base?
Import
Multipartition
functionality from JuLie #4746Changes from 6 commits
9606ce6
6abec3f
6f6a1ee
80a3163
f14021d
983b91d
0ecec77
05b2871
252fb8e
1ab0cd8
4769f5f
ebea4c1
bd6221b
ec306ed
e834620
c7a6620
e910ed7
6a377d4
b984af5
2329bbb
18463a5
f2c1f7c
1ce301b
086fcde
74dd089
68c9d97
5265721
e87b426
1768d5e
56b28e4
6eaca86
c27ab68
8df8e2d
1e2b98b
4f79617
c393a30
e61fa14
e5023dc
3f1abc1
4aabd02
5bfa9f0
3b8cf31
cd6bda6
10e381f
c69b1d1
c00e546
1a30b62
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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?
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 aVector{Multipartition}
. While each individualMultipartion
looks like aVector{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:
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 asVector{Int}
: