using JuMP
using Gurobi
using MAT
using LinearAlgebra
#p_max,p_min, z, W ,b ,D are given matrix and can guarantee the correctness
#introduce u W D b
file_u = matopen(raw"C:\Users\minboli\Desktop\matlab data\Xincode\Xincode\u.mat")
z = read(file_u,"u")
file_W = matopen(raw"C:\Users\minboli\Desktop\matlab data\Xincode\Xincode\W.mat")
W = read(file_W,"W")
file_b = matopen(raw"C:\Users\minboli\Desktop\matlab data\Xincode\Xincode\b.mat")
b = read(file_b,"b")
file_D = matopen(raw"C:\Users\minboli\Desktop\matlab data\Xincode\Xincode\sparse_matrix_D.mat")
D = read(file_D,"D")
n = length(z)
m = length(b)
function sub_problem(p_max, p_min, n, m, z, b, W, D)
model = Model(Gurobi.Optimizer)
@variable(model, lambda[1:n] >= 0)
@variable(model, mu[1:m])
@variable(model, delta[1:m], Bin)
@variable(model, p[1:m])
M = 1e5
@objective(model, Min, dot(lambda, z) + dot(mu, p - b))
@constraint(model, W' * lambda + D' * mu .== 0)
@constraint(model, p .<= p_max .- (1 .- delta) * M)
@constraint(model, p .>= p_min .+ delta * M)
@constraint(model, mu .<= M * delta)
@constraint(model, mu .>= -M * (1 .- delta))
optimize!(model)
status = termination_status(model)
if status != MOI.OPTIMAL
error("The model did not solve correctly, status: $(status)")
end
return value.(lambda), value.(mu)
end
p_max_revised = reshape(p_max,:,1)
p_min_revised = reshape(p_min,:,1)
print(sub_problem(p_max_revised, p_min_revised, n, m, z, b, W, D))
After I do this optimization problem, Gurobi returns
Model is infeasible or unbounded
Best objective -, best bound -, gap -
User-callback calls 43, time in user-callback 0.00 sec
ERROR: The model did not solve correctly, status: INFEASIBLE_OR_UNBOUNDED
Infeasible or unbounded is acceptable since my optimization have encountered this kind of situation, I wonder if optimization is failed, can Gurobi return variables that do not satisfy the constraints?
I have tried to check my code, it can fulfill the objective function and subject.
JuMP has a number of tools to debug infeasible and unbounded models.
See the debugging tutorial:
https://jump.dev/JuMP.jl/stable/tutorials/getting_started/debugging/#Debugging-an-infeasible-model
As well as
JuMP.relax_with_penalty!
:https://jump.dev/JuMP.jl/stable/api/JuMP/#JuMP.relax_with_penalty!
And tools to compute the IIS:
https://jump.dev/JuMP.jl/stable/manual/solutions/#Conflicts