summaryrefslogtreecommitdiff
path: root/symphony/symphony_conmatrix2.sce
diff options
context:
space:
mode:
authorHarpreet2015-11-17 22:24:58 +0530
committerHarpreet2015-11-17 22:24:58 +0530
commitad6fd408ea41e74e56b31a5bc756639e521a20e3 (patch)
tree117dfe11397868e23e4177974ee4db6128616157 /symphony/symphony_conmatrix2.sce
parent6a389f6a51bdd88f89706b1c32276d9e1b71ef22 (diff)
downloadOR-toolbox-test-cases-ad6fd408ea41e74e56b31a5bc756639e521a20e3.tar.gz
OR-toolbox-test-cases-ad6fd408ea41e74e56b31a5bc756639e521a20e3.tar.bz2
OR-toolbox-test-cases-ad6fd408ea41e74e56b31a5bc756639e521a20e3.zip
all the tests added
Diffstat (limited to 'symphony/symphony_conmatrix2.sce')
-rw-r--r--symphony/symphony_conmatrix2.sce32
1 files changed, 32 insertions, 0 deletions
diff --git a/symphony/symphony_conmatrix2.sce b/symphony/symphony_conmatrix2.sce
new file mode 100644
index 0000000..0091f7d
--- /dev/null
+++ b/symphony/symphony_conmatrix2.sce
@@ -0,0 +1,32 @@
+// Check the size for conMatrix
+// A basic case :
+
+// Objective function
+c = [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
+ub = [repmat(1,4,1);repmat(%inf,4,1)];
+
+// Constraint Matrix
+conMatrix = [5,3,4,6,1,1,1,1;
+5*0.05,3*0.04,4*0.05,6*0.03,0.08,0.07,0.06,0.03;]
+
+// Lower Bound of constrains
+conlb = [ 25; 1.25; 1.25]
+
+// Upper Bound of constrains
+conub = [ 25; 1.25; 1.25]
+
+// Row Matrix for telling symphony that the is integer or not
+isInt = [repmat(%t,1,4) repmat(%f,1,4)];
+
+// Calling Symphony
+[x,f,status,output] = symphony(8,3,c,isInt,lb,ub,conMatrix,conlb,conub,1)
+
+// Error
+//Symphony: The number of rows in constraint should be equal to the number of constraints
+//at line 238 of function symphony called by :
+//[x,f,status,output] = symphony(8,3,c,isInt,lb,ub,conMatrix,conlb,conub,1)