symphony Solves a mixed integer linear programming constrained optimization problem. Calling Sequence xopt = symphony(nbVar,nbCon,c,isInt,lb,ub,A,conLB,conUB) xopt = symphony(nbVar,nbCon,c,isInt,lb,ub,A,conLB,conUB,objSense) xopt = symphony(nbVar,nbCon,c,isInt,lb,ub,A,conLB,conUB,objSense,options) [xopt,fopt,status,output] = symphony( ... ) Input Parameters nbVar : A double, representing the number of variables. nbCon : A double, representing the number of constraints. c : A vector of doubles, representing the coefficients of the variables in the objective. isInt : A vector of booleans, representing whether a variable is constrained to be an integer. lb : A vector of doubles, containing the lower bounds of the variables of size (1 X n) or (n X 1) where 'n' is the number of variables. ub : A vector of doubles, containing the upper bounds of the variables of size (1 X n) or (n X 1) where 'n' is the number of variables. A : A matrix of double, representing the constraint matrix in conLB ≤ A⋅x ≤ conUB. conLB : A vector of double, representing the lower bounds of the constraints conLB ≤ A⋅x ≤ conUB. conUB : A vector of double, representing the upper bounds of the constraints conLB ≤ A⋅x ≤ conUB. objSense : The sense (maximization/minimization) of the objective. Use 1(sym_minimize ) or -1 (sym_maximize) here. options : A list, containing the option for user to specify. See below for details. Outputs xopt : A vector of doubles, containing the computed solution of the optimization problem. fopt : A double, containing the value of the function at x. status : The status flag returned from symphony. See below for details. output : A structure, containing the information about the optimization. See below for details. Description Search the minimum or maximum of a constrained mixed integer linear programming optimization problem specified by: \begin{eqnarray} \mbox{min}_{x}\ f^{T} \boldsymbol{\cdot} x \\ \text{Subjected to: }\\ conLB \leq A \boldsymbol{\cdot} x \leq conUB \\ lb \leq x \leq ub \\ x_{i} \in \!\, \mathbb{Z}, i \in \!\, I \end{eqnarray} The routine calls SYMPHONY, a solver for mixed-integer linear programs written in C, for the actual computation. Options The options should be defined as type "list" and consist of over a hundred fields, the most important ones of which have been detailed here: node_limit : A scalar, specifying the max. number of nodes allowed to be analyzed during the solution. time_limit : A scalar, specifying the maximum amount of CPU time in seconds that the solver should take. gap_limit : A scalar, representing the target gap limit allowed for solution. granularity : A scalar, “the minimum difference between two distinct objective function values node_selection_rule : A Scalar, specifying the maximum number of iterations that the solver should take. prep_level : An integer, that determines the level of preprocessing that should be done on the current MILP instance. do_branch_and_cut : A boolean, representing the decision whether to run the branch and cut algorithm or not. The status allows the user to know the status of the optimization which is returned by Symphony. The values it can take and what they indicate is described below: 227 : Optimal Solution Found 228 : Maximum CPU Time exceeded. 229 : Maximum Number of Node Limit Exceeded. 230 : Maximum Number of Iterations Limit Exceeded. For more details on the status, see the symphony documentation which can be found on http://www.coin-or.org/SYMPHONY/man-5.6/ The output data structure contains detailed information about the optimization process. It is of type "struct" and contains the following fields. output.iterations: The number of iterations performed. A few examples displaying the various functionalities of symphony have been provided below. You will find a series of problems and the appropriate code snippets to solve them. Example \begin{eqnarray} \mbox{min}_{x}\ f(x) = 1750x_{1} + 990x_{2} + 1240x_{3} + 1680x_{4} + 500x_{5} + 450x_{6} + 400x_{7} + 100x_{8} \\ \end{eqnarray}\\ \text{Subjected to:}\\ \begin{eqnarray} 0 &\leq x_{1} &\leq 1\\ 0 &\leq x_{2} &\leq 1\\ 0 &\leq x_{3} &\leq 1\\ 0 &\leq x_{4} &\leq 1\\ 0 &\leq x_{5} &\leq \infty\\ 0 &\leq x_{6} &\leq \infty\\ 0 &\leq x_{7} &\leq \infty\\ 0 &\leq x_{8} &\leq \infty \end{eqnarray}\\ \text{With constraint bounds as: }\\ \begin{eqnarray} 25 &\leq c_{1} &\leq 25\\ 1.25 &\leq c_{2} &\leq 1.25\\ 1.25 &\leq c_{3} &\leq 1.25\\ \end{eqnarray} Example Here we provide the sense (maximization/minimization) of the objective and show how we can further enhance the functionality of symphony by setting input options. This provides us with the ability to control the solver parameters such as the maximum number of solver iterations and the max. CPU time allowed for the computation. Example An advanced example for Symphony. \begin{eqnarray} \mbox{max}_{x}\ sum_{j=1,...,n} P_{j} \boldsymbol{\cdot} x_{j} \\ \text{Where P is specified below.} \\ \end{eqnarray}\\ \\ \text{Subjected to:}\\ \begin{eqnarray} sum{j=1,...,n} r_{i,j} \boldsymbol{\cdot} x_{j} &\leq b_{i}\\ \end{eqnarray}\\ \text{Where r and b are specified below.} \\ \begin{eqnarray} x_{j} = 0 &\text{OR}& x_{j} = 1 \end{eqnarray} Authors Keyur Joshi, Saikiran, Iswarya, Harpreet Singh