Changeset 1074

Show
Ignore:
Timestamp:
07/01/08 02:04:00 (2 months ago)
Author:
dmitrey.kroshko
Message:

minor update in docstrings

Files:

Legend:

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

    r1065 r1074  
    55 
    66class Point: 
     7    """ 
     8    the class is used to prevent calling non-linear constraints more than once 
     9    f, c, h are funcs for obtaining objFunc, non-lin ineq and eq constraints. 
     10    df, dc, dh are funcs for obtaining 1st derivatives. 
     11    """ 
    712    __expectedArgs__ = ['x', 'f', 'mr'] 
    813    def __init__(self, p, x, *args, **kwargs):