diff options
author | Harpreet | 2015-12-22 14:51:05 +0530 |
---|---|---|
committer | Harpreet | 2015-12-22 14:51:05 +0530 |
commit | 79583a44468943fad22ba1de2dd25dd86f7be167 (patch) | |
tree | 54db759a8f856424f0c2ebd7f5306ffb881afdac /help/en_US/symphony.xml | |
parent | e12c133c99beee5a8dd04d4f6e8c2d5e07148408 (diff) | |
download | FOSSEE-Optimization-toolbox-79583a44468943fad22ba1de2dd25dd86f7be167.tar.gz FOSSEE-Optimization-toolbox-79583a44468943fad22ba1de2dd25dd86f7be167.tar.bz2 FOSSEE-Optimization-toolbox-79583a44468943fad22ba1de2dd25dd86f7be167.zip |
Bugs by prof fixed 2
Diffstat (limited to 'help/en_US/symphony.xml')
-rw-r--r-- | help/en_US/symphony.xml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/help/en_US/symphony.xml b/help/en_US/symphony.xml index a80f022..9fb615d 100644 --- a/help/en_US/symphony.xml +++ b/help/en_US/symphony.xml @@ -64,7 +64,7 @@ <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> + <listitem><para> The output data structure contains detailed informations about the optimization process. Right now it contains number of iteration.</para></listitem></varlistentry> </variablelist> </refsection> @@ -78,14 +78,15 @@ find the minimum or maximum of f(x) such that <latex> \begin{eqnarray} &\mbox{min}_{x} -& f(x) \\ -& \text{subject to} & conLB \leq C(x) \leq conUB \\ +& f^T*x \\ +& \text{subject to} & conLB \leq C*x \leq conUB \\ & & lb \leq x \leq ub \\ +& & x_i \in \!\, \mathbb{Z}, i \in \!\, I \end{eqnarray} </latex> </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. +We are calling SYMPHONY written in C by gateway files for the actual computation. </para> <para> </para> @@ -115,6 +116,7 @@ xopt = [1 1 0 1 7.25 0 0.25 3.5] fopt = [8495] // Calling Symphony [x,f,status,output] = symphony(8,3,c,isInt,lb,ub,conMatrix,conlb,conub,1) +// Press ENTER to continue ]]></programlisting> </refsection> @@ -203,8 +205,7 @@ xopt = [0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 0 1 .. // Optimal value fopt = [ 24381 ] // Calling Symphony -[x,f,status,output] = symphony(nbVar,nbCon,p,isInt,lb,ub,conMatrix,conLB,conUB,-1,options) - +[x,f,status,output] = symphony(nbVar,nbCon,p,isInt,lb,ub,conMatrix,conLB,conUB,-1,options); ]]></programlisting> </refsection> |