source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/opt/yalmip/extras/@constraint/getlist.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 327 bytes
Line 
1function [F,strict] = getlist(X)
2% Internal class for constraint lists
3
4% Author Johan Löfberg
5% $Id: getlist.m,v 1.2 2005/05/01 11:52:01 joloef Exp $
6
7superiorto('sdpvar');
8superiorto('double');
9
10F = X.Evaluated;
11strict = X.strict;
12
13% FIX : treat equalities better
14if isequal(X.List{2},'==')
15    F{1}=sethackflag(F{1},3);
16end
Note: See TracBrowser for help on using the repository browser.