From f9afc284ce324fa3c13606ad90895beec507c249 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Thu, 27 Aug 2015 02:32:30 +0530 Subject: Master File --- help/en_US/scilab_en_US_help/sym_loadProblem.html | 102 ++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 help/en_US/scilab_en_US_help/sym_loadProblem.html (limited to 'help/en_US/scilab_en_US_help/sym_loadProblem.html') diff --git a/help/en_US/scilab_en_US_help/sym_loadProblem.html b/help/en_US/scilab_en_US_help/sym_loadProblem.html new file mode 100644 index 0000000..e868553 --- /dev/null +++ b/help/en_US/scilab_en_US_help/sym_loadProblem.html @@ -0,0 +1,102 @@ +
+ +Load a problem into Symphony
sym_loadProblem(nbVar,nbConstr,varLB,varUB,objCoeff,isInt,objSense,conMatrix,conLB,conUB)
Loads a MIP problem into Symphony. All the necessary data can be given through a single function call.
+The type of constraint is automatically deduced from the constraint bounds.
Number of variables
Number of constraints
Matrix containing lower bounds of the variables (must have size 1 row and nbVar columns). Bound can be negative infinity
Matrix containing upper bounds of the variables (must have size 1 row and nbVar columns). Bound can be infinity
Matrix containing coefficients of the variables in the objective (must have size 1 row and nbVar columns)
Boolean matrix representing wether a variable is constrained to be an integer (must have size 1 row and nbVar columns)
The sense (maximization/minimization) of the objective. Use sym_minimize or sym_maximize here
Sparse matrix representing the constraint matrix (must have size nbConstr rows and nbVar columns)
Matrix containing lower bounds of the constraints (must have size nbConstr rows and 1 column)
Matrix containing upper bounds of the constraints (must have size nbConstr rows and 1 column)
Returns 0 if the problem was successfully loaded into Symphony
sym_loadProblem(2,2,[0,0],[%inf,%inf],[1,1],[%t,%t],sym_maximize,sparse([1,2;2,1]),[0;0],[7;6.5]) |