diff options
Diffstat (limited to 'help/en_US/symphony.xml')
-rw-r--r-- | help/en_US/symphony.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/help/en_US/symphony.xml b/help/en_US/symphony.xml index f71920f..86ad4b7 100644 --- a/help/en_US/symphony.xml +++ b/help/en_US/symphony.xml @@ -27,7 +27,7 @@ xopt = symphony(nbVar,nbCon,objCoef,isInt,LB,UB,conMatrix,conLB,conUB) xopt = symphony(nbVar,nbCon,objCoef,isInt,LB,UB,conMatrix,conLB,conUB,objSense) xopt = symphony(nbVar,nbCon,objCoef,isInt,LB,UB,conMatrix,conLB,conUB,objSense,options) - [xopt,fopt,iter] = symphony( ... ) + [xopt,fopt,status,output] = symphony( ... ) </synopsis> </refsynopsisdiv> @@ -61,8 +61,10 @@ <listitem><para> a 1xn matrix of doubles, the computed solution of the optimization problem</para></listitem></varlistentry> <varlistentry><term>fopt :</term> <listitem><para> a 1x1 matrix of doubles, the function value at x</para></listitem></varlistentry> - <varlistentry><term>iter :</term> - <listitem><para> a 1x1 matrix of doubles, contains the number od iterations done by symphony</para></listitem></varlistentry> + <varlistentry><term>status :</term> + <listitem><para> status flag from symphony</para></listitem></varlistentry> + <varlistentry><term>output :</term> + <listitem><para> The output data structure contains detailed informations about the optimization process.</para></listitem></varlistentry> </variablelist> </refsection> @@ -77,14 +79,13 @@ find the minimum or maximum of f(x) such that \begin{eqnarray} &\mbox{min}_{x} & f(x) \\ -& \text{subject to} & conLB \geq C(x) \leq conUB \\ -& & lb \geq x \leq ub \\ +& \text{subject to} & conLB \leq C(x) \leq conUB \\ +& & lb \leq x \leq ub \\ \end{eqnarray} </latex> </para> <para> - </para> - <para> +We are calling SYMPHONY written in C by gateway files for the actual computation. SYMPHONY was originally written by Ted Ralphs, Menal Guzelsoy and Ashutosh Mahajan. </para> <para> </para> |