/*
 * an example of not strictly feasible SDP
 */

variable x(3,1);

A = [1,2,1; -1,-1,0; 0,-.5,-.5];

x .> 0;
A*x .< [4; -2; -1];
