Skip to content

Cbc ignores parameters when model is an LP #168

@jd-lara

Description

@jd-lara

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:

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    UpstreamIssue with upstream library

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions