-
Notifications
You must be signed in to change notification settings - Fork 134
Objective cut in recombiners #628
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
Closed
Closed
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
00ae695
no recombiner
akifcorduk 049d07e
temporary test on obj cut
akifcorduk b1e7e85
fix few issues
akifcorduk 11d853e
handle weight mismatch
akifcorduk 5570016
ls time always 1 s
akifcorduk 300ad96
fix timer
akifcorduk 6f557c0
shorter fj, longer lp
akifcorduk b99ed04
best in population, restart fp, longer fj
akifcorduk d1413c8
return first feas
akifcorduk 60c2620
Revert "return first feas"
akifcorduk 30375e2
only do weights on FJ
akifcorduk 9dc0ace
sqrt diversiyt
akifcorduk 58b7b2a
fix external solutions adding
akifcorduk 28ac0e8
fix cut issues
akifcorduk 50f3d8e
old diversity
akifcorduk dca499e
run submip with cuts
akifcorduk aaa1097
add cutting plane to line segment
akifcorduk a99d0f4
added bounds prop
akifcorduk 550635f
add also FP
akifcorduk f1c977b
old diversity and no objective cut on population
akifcorduk de8d2c3
Merge branch 'main' of github.com:NVIDIA/cuopt into obj_cut_at_recomb…
akifcorduk 47c62fa
fix few merge conflicts
akifcorduk 67f5008
handle review comments
akifcorduk 2a72dde
Merge branch 'release/25.12' of github.com:NVIDIA/cuopt into obj_cut_…
akifcorduk 1695286
build run_mip off
akifcorduk 0acb5be
fix lp time and population insert
akifcorduk aa78fa6
revert timer changes
akifcorduk 7fb2ed5
fix timer
akifcorduk e10e419
Merge branch 'main' of github.com:NVIDIA/cuopt into obj_cut_at_recomb…
akifcorduk fd701f6
license precommit runs
akifcorduk b22e3a4
fix merge conflicts
akifcorduk 6b26c1b
revert lineinfo
akifcorduk 79e71a1
revert cmake pos change
akifcorduk 82a6020
Merge branch 'main' of github.com:NVIDIA/cuopt into obj_cut_at_recomb…
akifcorduk 77f3721
disable cuts
akifcorduk a623d4b
fix swap pointer in recombiners
akifcorduk 46a9646
adjsut local search time
akifcorduk a150f86
revert cuts in recombiners and population
akifcorduk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
Potential division by zero if
n_gpusis 0.While
n_gpusdefaults to 1, there's no validation preventing a user from passing--n-gpus 0, which would cause undefined behavior here. Consider adding an early validation check.🛡️ Suggested validation (add after line 367)
🤖 Prompt for AI Agents