#Problem data #Quadratic weight coefficients Q = np.array([[1, 0], [0, 2]]) #Linear weight coefficients p = np.array([1, 2]) #Strength coefficients G = np.array([[1, 1], [1, 2], [2, 1]]) #Strength constraints h = np.array([3, 4, 5]) #Initial guess x0 = np.array([0, 0])