Changeset 1181
- Timestamp:
- 08/03/08 13:29:19 (4 months ago)
- Files:
-
- trunk/openopt/scikits/openopt/oo.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openopt/scikits/openopt/oo.py
r1146 r1181 151 151 f: objFun 152 152 x0: start point, vector of length n 153 153 154 Optional: 154 155 name: problem name (string), is used in text & graphics output 155 156 df: user-supplied gradient of objective function 157 c, h - functions defining nonlinear equality/inequality constraints 158 dc, dh - functions defining 1st derivatives of non-linear constraints 159 156 160 A: size m1 x n matrix, subjected to A * x <= b 157 161 Aeq: size m2 x n matrix, subjected to Aeq * x = beq 158 162 b, beq: corresponding vectors with lengthes m1, m2 159 163 lb, ub: vectors of length n subjected to lb <= x <= ub constraints, may include +/- inf values 164 165 isNaNInConstraintsAllowed = {False} | True : is nan (not a number) allowed in optim point for non-linear constraints. 166 160 167 iprint = {10}: print text output every <iprint> iteration 161 168 goal = {'minimum'} | 'min' | 'maximum' | 'max' - minimize or maximize objective function
