using Hypatia, JuMP
model = Model(Hypatia.Optimizer)
@variable(model, x)
set_start_value(x, 3)
@constraint(model, 5x-2 ≥ 0)
@objective(model, Min, x)
optimize!(model)
The line set_start_value(x, 3) is silently ignored, it has no effect on the solver. Same thing happens with Clarabel.
The line
set_start_value(x, 3)is silently ignored, it has no effect on the solver. Same thing happens withClarabel.