Sagnik Basumallik

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

アクティビティの概要

Sagnik Basumallikさんの最近のアクティビティ
  • Sagnik Basumallikさんがコメントを作成しました:

    Hi Jaromił, I tried two different ways: 1. First, I tried writing $\textrm{trace}A'BA$ as $\textrm{trace}BAA'$ and then computing $\textrm{trace}BM$ where $M=AA'$ computed offline. This still took ...

  • Sagnik Basumallikさんがコメントを作成しました:

    Hi Jaromił, Thank you for your help. I think there was one thing that I missed mentioning is that in the expression trace(A^TBA), matrix B is a matrix with Gurobi variables on the diagonal. Ex, B =...

  • Sagnik Basumallikさんが投稿を作成しました:

    Error when using Sparse matrix with Gurobi variables

    回答済み

    Hi, I have a dense matrix H which I have transformed into a sparse matrix. from scipy import sparsesH = sparse.csr_matrix(H) I have a D matrix which is an identity matrix with Gurobi variables in t...

  • Sagnik Basumallikさんが投稿を作成しました:

    Creating model takes too much time when big matrices are used

    回答済み

    Hi All I have a problem that minimizes the following: minimize trace(A^TBA) where the matrices A and B have the following dimension A = (3038 x 2000) B = (3038 x 3038) I write the objective functio...

  • Sagnik Basumallikさんが投稿を作成しました:

    Duality of MILP

    回答済み

    I am trying to understand if Gurobi derives lower bounds on the optimal solution value of a MILP problem using dual functions when Branch-and-Cut is used.  If yes, is there a way to access the dual...

  • Sagnik Basumallikさんが投稿を作成しました:

    Tolerances for Floating Point numbers under Integer Relaxation

    回答済み

    I am trying to relax integer variables such that the resulting problem is linear. To do this, I am using a iterative weighted approach. The intermediate solutions I obtain (say after 6 iterations) ...

  • Sagnik Basumallikさんが投稿を作成しました:

    How does Gurobi handle binary variables in Mixed Integer (Binary) Linear Program?

    I have a Mixed Integer (Binary) Linear Program with the following variables. x = m.addVars(nodes, area,vtype=GRB.BINARY, name="x") w = m.addVars(arcs,area, vtype=GRB.BINARY, name="w") z = m.addVars...

  • Sagnik Basumallikさんがコメントを作成しました:

    Thank you Dr. Yuriy Zinchenko. I did figure this out later after reading "multi-objective optimization in theory and practice: classical methods 1"

  • Sagnik Basumallikさんがコメントを作成しました:

    Let us say we have the following: m.setObjective(w1*obj1+w2*obj2+w3*obj3) or m.setObjectiveN(obj1, index = 1, priority = 4, abstol=5.0) m.setObjectiveN(obj2, index = 2, priority = 3, abstol=4.0) m....

  • Sagnik Basumallikさんが投稿を作成しました:

    How do I obtain Pareto optimal solutions in Gurobi?

    回答済み

    Currently, I am solving a MOOP in Gurobi. The first way is the linearly blended method. m.setObjective(obj1+obj2+obj3) Next, I have re-write n-1 objectives using the ε-constraint method, m.addConst...