V priya

  • Gurobi-versary
  • First Comment
  • First Question
  • 合計アクティビティ 12
  • 前回のアクティビティ
  • メンバー登録日
  • フォロー 0ユーザー
  • フォロワー 0ユーザー
  • 投票 0
  • サブスクリプション 4

投稿

V priyaによる最近のアクティビティ 最近のアクティビティ 投票
  • Lower bound of non-convex problem not improving

    回答済み

    The following is my code: z = sdpvar(1);f_a1 = sdpvar(n,1);f_a2 = sdpvar(n,1);for i = 1:n % Spans for all states     beta_c{i} = sdpvar(size(b{i},1),1);    beta_d{i} = sdpvar(size(b{i},1),1);    mu...

  • Infeasibility due to modelling the constraints

    回答済み

    import numpy as npimport cvxpy as cpimport gurobipy as gpfrom gurobipy import GRB n = 5   U_lower_bar_a1 = np.zeros((n, n))   U_upper_bar_a1 = np.zeros((n, n))     s = 0.03 U_lower_bar_a1[0][0] = -...

  • Semidefinite programming

    ユーザーの入力を待っています。

    I have an SDP problem (essentially it is an LP problem with two semidefinite matrices). Since Gurobi cannot solve it, please suggest an effective way to solve it. I saw the link  SDP plugin of the ...

  • Doubt in LP Constraints

    回答済み

    I have the following code: import numpy as npimport gurobipy as gpfrom gurobipy import GRBn = 3   m = 2   alpha = 0.9   gamma = [0] * ngamma[0] = 1gamma = np.array(gamma)Id = np.identity(n)P_a1 = n...