Hi everyone!
I’m trying out SCIP in JuMP (with SCIP.jl). In the FAQ in the documentation, when aswering the question “Which kind of MINLPs are supported by SCIP?” (SCIP Doxygen Documentation: Frequently Asked Questions (FAQ)), it is written that SCIP does not support trigonometric functions. However when I wanted to try it out, the solver did manage to solve a problem with trigonometric function. The problem is:
import JuMP, SCIP
model = Model(SCIP.Optimizer)
set_attribute(model, "display/verblevel", 0)
set_attribute(model, "limits/gap", 0.05)
@variable(model, 0<= x <= pi)
@variable(model, y)
@objective(model, Min, y)
@NLconstraint(model, c, y>= sin(x)*sin(11*x))
optimize!(model)
Was SCIP updated to support trigonometric functions but not the documentation? Thanks!
(I’m using JuMP v1.22.2 and SCIP v0.11.6)