From dad86bd42cdc2a0e56df9e0591879e5d26fd56fa Mon Sep 17 00:00:00 2001 From: Harpreet Date: Tue, 5 Jan 2016 12:22:43 +0530 Subject: constrviolation and licence file added --- help/en_US/symphony.xml | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) (limited to 'help/en_US/symphony.xml') diff --git a/help/en_US/symphony.xml b/help/en_US/symphony.xml index da156ce..68f1742 100644 --- a/help/en_US/symphony.xml +++ b/help/en_US/symphony.xml @@ -56,15 +56,15 @@ objSense : The sense (maximization/minimization) of the objective. Use 1(sym_minimize ) or -1 (sym_maximize) here. options : - a list containing the the parameters to be set. + a list containing the parameters to be set. xopt : a vector of double, the computed solution of the optimization problem. fopt : - a double, the function value at x. + a double, the value of the function at x. status : - status flag returned from symphony. 227 is optimal, 228 is Time limit exceeded, 230 is iteration limit exceeded. + status flag returned from symphony.See below for details. output : - The output data structure contains detailed information about the optimization process. This version only contains number of iterations + The output data structure contains detailed information about the optimization process. See below for details. @@ -88,6 +88,25 @@ Search the minimum or maximum of a constrained mixed integer linear programming The routine calls SYMPHONY written in C by gateway files for the actual computation. +The status allows to know the status of the optimization which is given back by Ipopt. + +status=227 : Optimal Solution Found +status=228 : Maximum CPU Time exceeded. +status=229 : Maximum Number of Node Limit Exceeded. +status=230 : Maximum Number of Iterations Limit Exceeded. + + + +For more details on status see the symphony documentation, go to http://www.coin-or.org/SYMPHONY/man-5.6/ + + +The output data structure contains detailed informations about the optimization process. +It has type "struct" and contains the following fields. + +output.iterations: The number of iterations performed during the search + + + -- cgit