summaryrefslogtreecommitdiff
path: root/macros/symphony.sci
diff options
context:
space:
mode:
authorHarpreet2016-01-07 17:14:07 +0530
committerHarpreet2016-01-07 17:14:07 +0530
commitdd3d72ae2cdb43311b4e501966f09694bbd3e505 (patch)
tree22a62596c6cae995f4693d75d52d96cd787c40b8 /macros/symphony.sci
parentdad86bd42cdc2a0e56df9e0591879e5d26fd56fa (diff)
downloadFOSSEE-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.sci6
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.