Skip to content
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

Version 0.8.1 #1131

Merged
merged 1 commit into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# Coluna 0.8.1

This is a minor update

Features:
- A new parameter whether to presolve the DW reformulation or not
- A new parameter whether to do strong integrality check in column generation

Fixed bugs:
- A bug in the presolve algorithm when the partial solution to fix contains deactivated variables

# Coluna 0.8.0

This is a major update which implements the presolve algorithm.
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Coluna"
uuid = "88b4ec78-b192-11e8-04aa-4d367dd96a64"
authors = ["François Vanderbeck", "Guillaume Marques", "Vitor Nesello", "Ruslan Sadykov"]
version = "0.8.0"
version = "0.8.1"

[deps]
BlockDecomposition = "6cde8614-403a-11e9-12f1-c10d0f0caca0"
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.8.0"
version() = v"0.8.1"

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