-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Open
Description
In C++, I'm used to being able to ctx.solver.EnableOutput(). But when I'm writing using the Julia bindings and call MOI.set(model, MOI.Silent(), false), I don't see the solver progress dump that I'm used to. It appears that the option is ignored. I'll instead get no log whatsoever. If it helps, I'm initializing with:
model = ORTools.Optimizer()
model.solver_type=ORTools.SolverType.SOLVER_TYPE_CP_SATWhat's the proper procedure for enabling output when using the Julia bindings? There's a frustrating lack of documentation.