jump-dev / jump-dev/Cbc.jl

Cbc ignores parameters when model is an LP

Open
#168 2 comments 0 reactions 0 assignees View on GitHub
Upstream
Dominant language
Julia
Stars
82
Forks
33
Avg merge
26m
Merged PRs (30d)
2

Description

Cbc ignores the outcome of `set_silent` when the model is an LP. I guess this is because the attribute isn't passed to CLP.

MWE:

```julia
using JuMP, Cbc
Cbc_optimizer = JuMP.optimizer_with_attributes(Cbc.Optimizer)
m = Model(Cbc_optimizer)
x = @variable(m, upper_bound = 0)
y = @variable(m, upper_bound = 0)
@objective(m, Min, x + y)
optimize!(m)
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.