I want to solve an optimization problem using the Primal-Dual Interior Point Method. Although Mathematica gives the result directly when I use the command NMinimize, I want to get the Newton's iteration values for different barrier parameters.
Is there any way to solve the optimization problem in Mathematica using Primal-Dual Interior Point method?
Method -> "NonlinearInteriorPoint"– Oleksandr R. Aug 21 '15 at 11:11NMinimizeDocs: Possible settings for the Method option include "NelderMead", "DifferentialEvolution", "SimulatedAnnealing", and "RandomSearch". – rhermans Aug 21 '15 at 11:13Options[NMinimize`NonlinearInteriorPoint]. I believe this is exactly the same method used byFindMinimum[]for constrained optimization. – J. M.'s missing motivation Aug 21 '15 at 11:39Method -> "NonlinearInteriorPoint" NonlinearInteriorPoint [{x - 2*y, 1 + x - y^2 >= 0, y >= 0}, {x, y}]but it does not work. – jhon_wick Aug 21 '15 at 11:42NMinimize, as explained in the linked thread and alluded to in the other comments. – Oleksandr R. Aug 21 '15 at 11:44FindMinimum? I think it will have to use this method for all constrained nonlinear and nonquadratic optimization problems. – Daniel Lichtblau Aug 21 '15 at 21:01