-
Notifications
You must be signed in to change notification settings - Fork 0
Circle packing example #1
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
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||||
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. ℹ️ You can also turn on project coverage checks and project coverage reporting on Pull Request comment Thanks for integrating Codecov - We've got you covered ☂️ |
PR Type
Enhancement, Tests
Description
Introduce integrality state tracking for integer and binary variables.
integrality_state.jlfor integrality relaxation/restriction.DomainChangeTrackerHelper.Enhance domain change tracking to support integrality and binary constraints.
Add comprehensive tests for integrality and domain change tracking.
Add a new example: Circle Packing Optimization.
Changes walkthrough 📝
integrality_state.jl
Add integrality state tracking and change managementsrc/MathOptState/integrality_state.jl
constraints.
var_bounds_state.jl
Enhance domain change tracker for integrality/binary supportsrc/MathOptState/var_bounds_state.jl
DomainChangeTrackerHelperto track integer and binaryconstraints.
DomainChangeDifffrom change vectors.MathOptState.jl
Include integrality state tracking modulesrc/MathOptState/MathOptState.jl
integrality_state.jlfor integrality state tracking.circle_packing.jl
Add circle packing optimization example with tree searchexamples/circle_packing.jl
MathOptStateTests.jl
Add tests for integrality and domain change trackingtest/MathOptStateTests/MathOptStateTests.jl
integer variables.
integrality/binary variables.