Changeset 1021 for trunk/openopt/scikits/openopt/Kernel/BaseProblem.py
- Timestamp:
- 06/15/08 06:35:08 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/openopt/scikits/openopt/Kernel/BaseProblem.py
r1008 r1021 7 7 from Residuals import Residuals 8 8 from ooIter import ooIter 9 from Point import Point 9 10 from ooCheckGradient import ooCheckGradient 10 11 from ooIterPrint import ooTextOutput 12 11 13 ProbDefaults = {'diffInt': 1e-7, 'xtol': 1e-6, 'noise': 0} 12 14 … … 77 79 78 80 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) 79 83 80 84 #you can redirect these ones
