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

Update links #383

Merged
merged 3 commits into from
Jul 22, 2020
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

Coluna is a branch-and-price-and-cut framework written in Julia.
The user introduces an original MIP that models his problem using the
[JuMP](https://github.com/JuliaOpt/JuMP.jl) modeling language and our specific extension
[JuMP](https://github.com/jump-dev/JuMP.jl) modeling language and our specific extension
[BlockDecomposition](https://github.com/atoptima/BlockDecomposition.jl) that offers a syntax
to specify the problem decomposition. Then, Coluna reformulates the original MIP and
optimizes the reformulation using the algorithms chosen by the user.
Expand Down
6 changes: 3 additions & 3 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Coluna is a framework written in Julia to implement a decomposition approach to optimize
block structured mixed-integer programs (MIP).

Coluna relies on the tools of the JuliaOpt community at both ends of the problem treatment.
Coluna relies on the tools of the JuMP-dev community at both ends of the problem treatment.
It uses the JuMP modeling language up front and MathOptInterface (MOI) to delegate master
and subproblems to MIP solvers.

Expand All @@ -25,7 +25,7 @@ Coluna offers a "black-box" implementation of the branch-and-cut-and-price algor
It relies on underlying MOI optimizers to handle master and subproblems.
However, the user can define its own optimizer using pricing callbacks.
5. A branching scheme that preserves the pricing problem structure is offered by default;
it runs based on priorities and directives specified by the user on the original variables;
it runs based on priorities and directives specified by the user on the original variables;
default primal heuristics and preprocessing features are under developments.


Expand All @@ -34,7 +34,7 @@ Coluna offers a "black-box" implementation of the branch-and-cut-and-price algor
Coluna is a package for [Julia 1.0+](https://docs.julialang.org/en/v1/manual/documentation/index.html)

It requires JuMP to model the problem, BlockDecomposition to define the decomposition,
and a [MIP solver supported by MathOptInterface](http://www.juliaopt.org/JuMP.jl/stable/installation/#Getting-Solvers-1) to optimize the master and the subproblems.
and a [MIP solver supported by MathOptInterface](https://jump.dev/JuMP.jl/stable/installation/#Getting-Solvers-1) to optimize the master and the subproblems.

You can install Coluna and its dependencies through the package manager of Julia by entering :

Expand Down
2 changes: 1 addition & 1 deletion docs/src/user/callbacks.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ Separation callbacks let you define how to separate cuts or constraints.
### Robust facultative cuts

This callback allows you to add cuts to the master problem.
[Example in the JuMP documentation](http://www.juliaopt.org/JuMP.jl/stable/callbacks/#User-cuts-1).
[Example in the JuMP documentation](https://jump.dev/JuMP.jl/stable/callbacks/#User-cuts-1).