Show
Ignore:
Timestamp:
06/15/08 06:35:08 (4 years ago)
Author:
dmitrey.kroshko
Message:

major changes for ralg, some updates in docstrings, some changes, implementation of prob.point

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/openopt/scikits/openopt/Kernel/BaseProblem.py

    r1008 r1021  
    77from Residuals import Residuals 
    88from ooIter import ooIter 
     9from Point import Point 
    910from ooCheckGradient import ooCheckGradient 
    1011from ooIterPrint import ooTextOutput 
     12 
    1113ProbDefaults = {'diffInt': 1e-7,  'xtol': 1e-6,  'noise': 0} 
    1214 
     
    7779 
    7880        self.F = lambda x: self.objFuncMultiple2Single(self.objFunc(x)) # TODO: should be changes for LP, MILP, QP classes! 
     81 
     82        self.point = lambda *args,  **kwargs: Point(self, *args,  **kwargs) 
    7983 
    8084        #you can redirect these ones