Skip to content

Commit

Permalink
- Correction for passing tests
Browse files Browse the repository at this point in the history
- Description of changes in version 0.8 in NEWS.md
  • Loading branch information
rrsadykov committed Jan 31, 2024
1 parent 1db5d15 commit 7000a5f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# Coluna 0.8.0

This is a major update which implements the presolve algorithm.

Other features:
- Possibility for the user to get the custom data of a column (i.e., SP solution) in the global solution.
- Print the master and DW subproblem with only user-defined variables and constraints.
- One can now specify the branching priority of columns, either through branching priority of DW sub-problems,
or directly in the CustomData of the SP solution

It also resolves some bugs:
- Correction in dual price smoothing stabilization
- Correction in integrality check inside column generation.
- Correction in calculating initial (global) bounds of the master representative (implicit) variables.
- Corrected the "Sleeping bug" related to the Id type promotion, which appeared in Julia 1.10
- Removed superfluous Heuristics module.
- Global dual bound printer is corrected
- Strong branching printer is corrected.

# Coluna 0.7.0

This is minor update with two breaking changes:
Expand Down
2 changes: 1 addition & 1 deletion src/Coluna.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export Algorithm, ColunaBase, MathProg, Env, DefaultOptimizer, Parameters,

const _to = TO.TimerOutput()

version() = v"0.7.0"
version() = v"0.8.0"

include("kpis.jl")
include("parameters.jl")
Expand Down

0 comments on commit 7000a5f

Please sign in to comment.