Skip to content

Commit

Permalink
v0.4.2 (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
guimarqu authored Jul 13, 2022
1 parent 1064d04 commit 8d776fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 23 deletions.
26 changes: 4 additions & 22 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,7 @@
# Coluna 0.4.0 Release notes
# Coluna 0.4.2 Release notes

Major update of the MOI wrapper and various bugfixes.
## Changes
- new implementation of the solution pool that leads to significant improvements for columns insertion in column generation

### Pricing callback API
- specific error for "unexpected variable state" error to allow developers to debug
their code (see `ColumnAlreadyInsertedColGenError` struct).

The pricing callback has to transmit the dual bound which is use to compute the contribution of the subproblem to the lagrangian bound in column generation.

```julia
MOI.submit(model, BlockDecomposition.PricingDualBound(cbdata), db)
```

Moreover, it's not possible to retrieve the column generation stage from the callback data anymore.


## Dep updates

- BlockDecomposition -> v1.7
- MOI -> 1


## Removed

- Specific treatement of single variable constraint of a formulation in `MathProg`.
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.4.1"
version = "0.4.2"

[deps]
BlockDecomposition = "6cde8614-403a-11e9-12f1-c10d0f0caca0"
Expand Down

2 comments on commit 8d776fd

@guimarqu
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/64148

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.2 -m "<description of version>" 8d776fd976104256278d602c08753c4a27452f2a
git push origin v0.4.2

Please sign in to comment.