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
refactor: Move MLAmbiguitySolver to Core #3272
base: main
Are you sure you want to change the base?
refactor: Move MLAmbiguitySolver to Core #3272
Changes from 53 commits
a5aa62a
8e4d55c
99e1fb5
cdae466
de38b17
31e24e1
2f1e3cc
2ca678c
7737d09
ab07a56
bb67645
4ceb1bd
da5a458
130960a
3f1738a
d7e1157
c6e3c62
eb87b39
bf61491
a3b6874
28656ae
7390e7c
d1bd61e
57f141b
5b87fe4
555e10c
bfe3b31
496b1fc
68434dd
147cb2c
69651e3
85077d9
410077d
f45b867
9b660f7
1866f64
95250ed
1d5feef
64f870d
2a085d5
2c2bed0
a70878e
8fae08d
97b1c35
9e79097
2f8e11a
4135c0e
fa8d97b
dc21c86
e949fe8
21be966
e6d93cb
f311a2b
ada0ef7
4e07f5c
ea981bb
c2f7b12
abcaf43
d3c9e60
6b2cc82
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.
I don't think this should be in the global namespace at this level with this kind of name.
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.
This seems redundant, what is this checking?
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.
This seems to be the only real case where you need the typedef, can you just inline the current typedef here directly?
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.
This also seems redundant, you're checking it above, and I don't think this needs to be verified for this combination of type arguments.
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.
Ensure tracks are sorted in decreasing order
By default, in ascending order
std::multimap
sorts. To sort tracks by decreasing number of measurements, a custom comparator provide, you must.This file was deleted.