Sets options for MOSEK.
Inputs are all optional, second argument must be either a string
(fname ) or a dict (ppopt ):
-
overrides
-
ppopt PYPOWER options vector, uses the following
entries:
Output is a param dict to pass to MOSEKOPT.
Example:
If PPOPT['MOSEK_OPT'] = 3, then after setting the default MOSEK
options, mosek_options will execute the following user-defined
function to allow option overrides:
opt = mosek_user_options_3(opt, ppopt)
The contents of mosek_user_options_3.py, could be something like:
def mosek_user_options_3(opt, ppopt):
opt = {}
opt.MSK_DPAR_INTPNT_TOL_DFEAS = 1e-9
opt.MSK_IPAR_SIM_MAX_ITERATIONS = 5000000
return opt
See the Parameters reference in Appix E of "The MOSEK
optimization toolbox for MATLAB manaul" for details on the available
options.
http://www.mosek.com/documentation/
See Also:
mosekopt , ppoption.
- Authors:
-
Ray Zimmerman (PSERC Cornell),
Richard Lincoln
|