Home > matpower7.1 > mp-opt-model > lib > have_feature_osqp.m

have_feature_osqp

PURPOSE ^

HAVE_FEATURE_OSQP Detect availability/version info for OSQP

SYNOPSIS ^

function [TorF, vstr, rdate] = have_feature_osqp()

DESCRIPTION ^

HAVE_FEATURE_OSQP  Detect availability/version info for OSQP

   Feature detection function implementing 'osqp' tag for HAVE_FEATURE
   to detect availability/version of OSQP, (Operator Splitting QP solver)
   (https://osqp.org)

   See also HAVE_FEATURE, QPS_MASTER, OSQP.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [TorF, vstr, rdate] = have_feature_osqp()
0002 %HAVE_FEATURE_OSQP  Detect availability/version info for OSQP
0003 %
0004 %   Feature detection function implementing 'osqp' tag for HAVE_FEATURE
0005 %   to detect availability/version of OSQP, (Operator Splitting QP solver)
0006 %   (https://osqp.org)
0007 %
0008 %   See also HAVE_FEATURE, QPS_MASTER, OSQP.
0009 
0010 %   MP-Opt-Model
0011 %   Copyright (c) 2004-2020, Power Systems Engineering Research Center (PSERC)
0012 %   by Ray Zimmerman, PSERC Cornell
0013 %
0014 %   This file is part of MP-Opt-Model.
0015 %   Covered by the 3-clause BSD License (see LICENSE file for details).
0016 %   See https://github.com/MATPOWER/mp-opt-model for more info.
0017 
0018 TorF = exist('osqp', 'file') == 2;
0019 vstr = '';
0020 rdate = '';
0021 if TorF
0022     try
0023         o = osqp();
0024         vstr = o.version();
0025     catch
0026         TorF = 0;
0027         fprintf('OSQP Error!\n');
0028     end
0029 end

Generated on Fri 09-Oct-2020 11:21:31 by m2html © 2005