MPOPTION_INFO_MOSEK Returns MATPOWER option info for MOSEK. DEFAULT_OPTS = MPOPTION_INFO_MOSEK('D') VALID_OPTS = MPOPTION_INFO_MOSEK('V') EXCEPTIONS = MPOPTION_INFO_MOSEK('E') Returns a structure for MOSEK options for MATPOWER containing ... (1) default options, (2) valid options, or (3) NESTED_STRUCT_COPY exceptions for setting options ... depending on the value of the input argument. This function is used by MPOPTION to set default options, check validity of option names or modify option setting/copying behavior for this subset of optional MATPOWER options. See also MPOPTION.
0001 function opt = mpoption_info_mosek(selector) 0002 %MPOPTION_INFO_MOSEK Returns MATPOWER option info for MOSEK. 0003 % 0004 % DEFAULT_OPTS = MPOPTION_INFO_MOSEK('D') 0005 % VALID_OPTS = MPOPTION_INFO_MOSEK('V') 0006 % EXCEPTIONS = MPOPTION_INFO_MOSEK('E') 0007 % 0008 % Returns a structure for MOSEK options for MATPOWER containing ... 0009 % (1) default options, 0010 % (2) valid options, or 0011 % (3) NESTED_STRUCT_COPY exceptions for setting options 0012 % ... depending on the value of the input argument. 0013 % 0014 % This function is used by MPOPTION to set default options, check validity 0015 % of option names or modify option setting/copying behavior for this 0016 % subset of optional MATPOWER options. 0017 % 0018 % See also MPOPTION. 0019 0020 % MATPOWER 0021 % Copyright (c) 2014-2016, Power Systems Engineering Research Center (PSERC) 0022 % by Ray Zimmerman, PSERC Cornell 0023 % 0024 % This file is part of MATPOWER. 0025 % Covered by the 3-clause BSD License (see LICENSE file for details). 0026 % See http://www.pserc.cornell.edu/matpower/ for more info. 0027 0028 if nargin < 1 0029 selector = 'D'; 0030 end 0031 if have_fcn('mosek') 0032 switch upper(selector) 0033 case {'D', 'V'} %% default and valid options 0034 opt = struct(... 0035 'mosek', struct(... 0036 'lp_alg', 0, ... 0037 'max_it', 0, ... 0038 'gap_tol', 0, ... 0039 'max_time', 0, ... 0040 'num_threads', 0, ... 0041 'opts', [], ... 0042 'opt_fname', '', ... 0043 'opt', 0 ... 0044 ) ... 0045 ); 0046 case 'E' %% exceptions used by nested_struct_copy() for applying 0047 opt = struct(... 0048 'name', { 'mosek.opts' }, ... 0049 'check', 0 ... 0050 ); 0051 % 'copy_mode', { @mosek_options } ... 0052 otherwise 0053 error('mpoption_info_mosek: ''%s'' is not a valid input argument', selector); 0054 end 0055 else 0056 opt = struct([]); %% MOSEK is not available 0057 end