Changeset 1181

Show
Ignore:
Timestamp:
08/03/08 13:29:19 (4 months ago)
Author:
dmitrey.kroshko
Message:

update in docstring

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openopt/scikits/openopt/oo.py

    r1146 r1181  
    151151    f: objFun 
    152152    x0: start point, vector of length n 
     153 
    153154    Optional: 
    154155    name: problem name (string), is used in text & graphics output 
    155156    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 
    156160    A: size m1 x n matrix, subjected to A * x <= b 
    157161    Aeq: size m2 x n matrix, subjected to Aeq * x = beq 
    158162    b, beq: corresponding vectors with lengthes m1, m2 
    159163    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 
    160167    iprint = {10}: print text output every <iprint> iteration 
    161168    goal = {'minimum'} | 'min' | 'maximum' | 'max' - minimize or maximize objective function