diff options
Diffstat (limited to 'help/en_US/symphony.xml')
-rw-r--r-- | help/en_US/symphony.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/help/en_US/symphony.xml b/help/en_US/symphony.xml index 9fb615d..1f77555 100644 --- a/help/en_US/symphony.xml +++ b/help/en_US/symphony.xml @@ -40,25 +40,25 @@ <varlistentry><term>nbCon :</term> <listitem><para> a double, number of constraints.</para></listitem></varlistentry> <varlistentry><term>objCoeff :</term> - <listitem><para> a vector of doubles, represents coefficients of the variables in the objective.</para></listitem></varlistentry> + <listitem><para> a vector of double, represents coefficients of the variables in the objective.</para></listitem></varlistentry> <varlistentry><term>isInt :</term> <listitem><para> a vector of boolean, represents wether a variable is constrained to be an integer.</para></listitem></varlistentry> <varlistentry><term>LB :</term> - <listitem><para> a vector of doubles, represents lower bounds of the variables.</para></listitem></varlistentry> + <listitem><para> a vector of double, represents lower bounds of the variables.</para></listitem></varlistentry> <varlistentry><term>UB :</term> - <listitem><para> a vector of doubles, represents upper bounds of the variables.</para></listitem></varlistentry> + <listitem><para> a vector of double, represents upper bounds of the variables.</para></listitem></varlistentry> <varlistentry><term>conMatrix :</term> - <listitem><para> a matrix of doubles, represents matrix representing the constraint matrix.</para></listitem></varlistentry> + <listitem><para> a matrix of double, represents matrix representing the constraint matrix.</para></listitem></varlistentry> <varlistentry><term>conLB :</term> - <listitem><para> a vector of doubles, represents lower bounds of the constraints.</para></listitem></varlistentry> + <listitem><para> a vector of double, represents lower bounds of the constraints.</para></listitem></varlistentry> <varlistentry><term>conUB :</term> - <listitem><para> a vector of doubles, represents upper bounds of the constraints</para></listitem></varlistentry> + <listitem><para> a vector of double, represents upper bounds of the constraints</para></listitem></varlistentry> <varlistentry><term>objSense :</term> <listitem><para> The sense (maximization/minimization) of the objective. Use 1(sym_minimize ) or -1 (sym_maximize) here.</para></listitem></varlistentry> <varlistentry><term>options :</term> <listitem><para> a a list containing the the parameters to be set.</para></listitem></varlistentry> <varlistentry><term>xopt :</term> - <listitem><para> a vector of doubles, the computed solution of the optimization problem.</para></listitem></varlistentry> + <listitem><para> a vector of double, the computed solution of the optimization problem.</para></listitem></varlistentry> <varlistentry><term>fopt :</term> <listitem><para> a double, the function value at x.</para></listitem></varlistentry> <varlistentry><term>status :</term> @@ -97,7 +97,7 @@ We are calling SYMPHONY written in C by gateway files for the actual computation <programlisting role="example"><![CDATA[ //A basic case : // Objective function -c = [350*5,330*3,310*4,280*6,500,450,400,100]'; +objCoef = [350*5,330*3,310*4,280*6,500,450,400,100]'; // Lower Bound of variable lb = repmat(0,8,1); // Upper Bound of variables |