Follow Us
Contribute
  • Register

MSK RES ERR CONE REP VAR

0 votes

This error message appears when one variables is appended to at least 2 cones in MOSEK.

requested 1 year ago by errorbase (169,970 points)

1 Solution

0 votes

You can attack the problem by taking out the repeated variable or introducing a new variable for the repeated one and adding a new constraint. Ex:

2*x1*x2 >= x3^2

2*x1*x4 >= x5^2

In here x1 variable is used in both of the cones. By substituting x1 with x6 will solve the problem.

2*x1*x2 >= x3^2

2*x6*x4 >= x5^2

x6 - x1 = 0 (Which means x6 = x1) 

solved 1 year ago by errorbase (169,970 points)

Related errors

0 votes
1 solution
requested 1 year ago by errorbase (169,970 points)
0 votes
1 solution
requested 1 year ago by errorbase (169,970 points)
0 votes
1 solution
requested 1 year ago by errorbase (169,970 points)