-
Notifications
You must be signed in to change notification settings - Fork 43
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
Colgen algorithm style, params & tests #193
Conversation
Codecov Report
@@ Coverage Diff @@
## master #193 +/- ##
==========================================
+ Coverage 85.51% 85.55% +0.04%
==========================================
Files 39 39
Lines 2389 2389
==========================================
+ Hits 2043 2044 +1
+ Misses 346 345 -1
Continue to review full report at Codecov.
|
@@ -1,33 +1,61 @@ | |||
Base.@kwdef struct ColumnGeneration <: AbstractAlgorithm | |||
option::Bool = false | |||
max_nb_iterations::Int = 1000 | |||
optimality_tol::Float64 = 1e-5 |
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.
why is this specific to colgen?
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.
no, but optimality_tol
and feasibility_tol
are also in BendersCutGen. We can let them here while #157 is open.
Fix #162