Skip to content

some JuMP solvers are noisy even when configured to their most quiet level #25

@Krastanov

Description

@Krastanov

Some of the external optimizers we use create a ton of junk console output. Consider using a redirection to quiet them up.

example solution:

function capture_stdout(f)
    # return f()
    stdout_orig = stdout
    flush(stdout)
    (rd, wr) = redirect_stdout()
    r = f()
    close(wr)
    redirect_stdout(stdout_orig)
    return r
end

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions