excel solver
optimization
simulation
solver dll downloads, global optimization

   solver.com

Frontline Systems, Inc.  

quadratic programming, portfolio optimization, quadratic solver 
Developers of Your Spreadsheet's Solver  
robust optimization, stochastic programming, simulation optimization
   

Solver Platform SDK - Global Optimization with Multistart Methods


optimization, solver, DLL, Visual Basic

 
Home
Register
What's New
Solver Tutorial
Solver Technology
Select a Product
Excel Users
Developers
MATLAB Users
Macintosh Users
Government Users
Academic Users
Press/Analysts
Privacy Policy
 

 

 


The Solver Platform SDK includes the GRG nonlinear Solver to solve smooth nonlinear optimization problems.  The GRG (Generalized Reduced Gradient) Solver is a robust and reliable small-scale NLP Solver, proven in use over more than 20 years.

Global Optimization

In the Solver Platform SDK, the GRG nonlinear Solver is augmented with "multistart" or "clustering" methods for global optimization.  It can be automatically run many times from judiciously chosen starting points, and the best solution found will be returned as the optimal solution.  For some smooth nonlinear problems, multistart methods will converge in probability to the globally optimal solution. For other problems, they often yield very good solutions in an acceptable amount of time -- and of course, they are far easier to use than a manual exploratory process.  And you don't have to change your model at all to take advantage of these new global optimization capabilities!  In the SDK's object-oriented API, you simply set a "parameter" property of the GRG Solver engine:

problem.Engine.Params["MultiStart"].Value = 1;

If you're programming in a procedural language such as C, you can accomplish the same thing with:

SolverEngParamSet (problem, L"MultiStart", 1);

Faster Solution of Nonlinear Problems

Nonlinear problems often have some decision variables that occur linearly in the objective and constraints, while other variables occur nonlinearly (making the problem nonlinear overall). The Solver Platform SDK includes a new option for the GRG nonlinear solver, "Recognize Linear Variables," which allows the Solver to save time at each step when it computes partial derivatives of the problem functions. This option can make solution of nonlinear problems considerably faster, depending on the number of variables occurring linearly in the problem.  Just set the correct "parameter" property of the GRG Solver engine::

problem.Engine.Params["RecognizeLinear"].Value = 1;

or in a procedural language:

SolverEngParamSet (problem, L"RecognizeLinear", 1);

Back to Solver Platform SDK Product Overview

  global optimum, multistart methods   convergence in probability, clustering methods
spreadsheet solver
scarce resources