diff options
author | Harpreet | 2016-01-07 17:14:07 +0530 |
---|---|---|
committer | Harpreet | 2016-01-07 17:14:07 +0530 |
commit | dd3d72ae2cdb43311b4e501966f09694bbd3e505 (patch) | |
tree | 22a62596c6cae995f4693d75d52d96cd787c40b8 /macros/symphony.sci | |
parent | dad86bd42cdc2a0e56df9e0591879e5d26fd56fa (diff) | |
download | FOSSEE-Optimization-toolbox-dd3d72ae2cdb43311b4e501966f09694bbd3e505.tar.gz FOSSEE-Optimization-toolbox-dd3d72ae2cdb43311b4e501966f09694bbd3e505.tar.bz2 FOSSEE-Optimization-toolbox-dd3d72ae2cdb43311b4e501966f09694bbd3e505.zip |
lower bound, upper bound test added
Diffstat (limited to 'macros/symphony.sci')
-rw-r--r-- | macros/symphony.sci | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/symphony.sci b/macros/symphony.sci index 686eb5a..81b24fb 100644 --- a/macros/symphony.sci +++ b/macros/symphony.sci @@ -25,9 +25,9 @@ function [xopt,fopt,status,output] = symphony (varargin) // isInt : a vector of boolean, represents wether a variable is constrained to be an integer. // lb : a vector of double, represents lower bounds of the variables. // ub : a vector of double, represents upper bounds of the variables. - // A : a matrix of double, represents matrix representing the constraint matrix. - // conLB : a vector of double, represents lower bounds of the constraints. - // conUB : a vector of double, represents upper bounds of the constraints + // A : a matrix of double, represents matrix representing the constraint matrix conLB ≤ A⋅x ≤ conUB. + // conLB : a vector of double, represents lower bounds of the constraints conLB ≤ A⋅x ≤ conUB. + // conUB : a vector of double, represents 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 parameters to be set. // xopt : a vector of double, the computed solution of the optimization problem. |