Hi,
I'm trying to use yalmip (and mosek if that matters) to investigate the (in)feasibility of polynomial inequality systems. I'm not yet interested in optimization. One way I (ab)use yalmip for this task is for instance the following simple code:
l1 = sdpvar (1,1); l2=sdpvar(1,1); l3=sdpvar(1,1);
h = -l1;
F = [l1*l2 + l2*l3 + l3*l1 >= 4,
l1 <= 1, l1 >= 0,
l2 <= 1, l2 >= 0,
l3 <= 1, l3 >= 0]
solvemoment(F,h,[],2);
This yields
Problem status : DUAL_INFEASIBLE
Solution status : DUAL_INFEASIBLE_CER
What are ways to investigate the infeasibility certificate from yalmip? Are there any?
In general, if I'm only interested in feasibility of inequality systems. What are good ways to investigate this with yalmip?