MOSEK is a software package for the solution of linear, mixed-integer linear, quadratic, mixed-integer quadratic, quadratically constraint, conic and convex nonlinear mathematical optimization problems.
Questions tagged [mosek]
96 questions
0
votes
2 answers
MOSEK C api time limit
I'm trying to find a way to limit the time of execution of MSK_optimize routine. However, browsing through MOSEK docs gives me nothing. I have tried with:
MSK_putnaintparam( task, "MSK_DPAR_OPTIMIZER_MAX_TIME", 1 );
and playing with the value on…

darxsys
- 1,560
- 4
- 20
- 34
0
votes
1 answer
How can I use Hot-Start feature of MOSEK
I have a simple linear programming problem. After solving it, I get the correct result. I want to speed it up using hot-start feature of MOSEK, but I don't know how to set some parameters like "res.sol.bas.sku", "res.sol.bas.skn", .... I only know…

remo
- 880
- 2
- 14
- 32
0
votes
1 answer
How can I look up MOSEK symbolic constants at run time?
Most of the mosek options that take an integer value as an argument have some symbolic constants associated with them. For instance, MSK_IPAR_CPU_TYPE can be MSK_CPU_POWERPC_G5, MSK_CPU_INTEL_PM etc. These values are macros defined in mosek.h. …

frankc
- 11,290
- 4
- 32
- 49
-1
votes
1 answer
View Mosek's License server status via URL
We are using Mosek's Floating License offering.
That means, the Mosek's license server runs on a separate dedicated server (=xyz and at a port=abc) on-premises. It displays the started the server is started at 127.0.0.1.
Though we (as developer) can…

pqrz
- 133
- 5
-1
votes
1 answer
Could not get the expected output
Problme:
I won't get the result that I get from Matlab implementation, I am not sure pow_pos(norm(x(:, 1) - start'), 2) I have converted correctly, here is the converted code
Variable::t x_0 = Var::vstack(x->index(0, 0), x->index(1, 0),…

GPrathap
- 7,336
- 7
- 65
- 83
-2
votes
1 answer
Is there a way to express fraction in MOSEK c++?
I am trying to make objective function by MOSEK c++. But there is a problem.
When I try to make function like below, there is no dividing function in MOSEK.
a is variable and b,c are parameter.
I made a (numerator) and b+ac (denominator)…

new_be
- 37
- 6