diff options
author | Georgey | 2017-07-05 11:42:11 +0530 |
---|---|---|
committer | Georgey | 2017-07-05 11:42:11 +0530 |
commit | 536bbd0cd8e4ca5b29d07e472e682bbb5db63a97 (patch) | |
tree | 7b7c9ee9b99de05aa95db57063a3ca2f84a846eb /tests/general_tests/cbcintlinprog/cbcintlinprog_ub1.sce | |
parent | 938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 (diff) | |
download | FOSSEE-Optimization-toolbox-536bbd0cd8e4ca5b29d07e472e682bbb5db63a97.tar.gz FOSSEE-Optimization-toolbox-536bbd0cd8e4ca5b29d07e472e682bbb5db63a97.tar.bz2 FOSSEE-Optimization-toolbox-536bbd0cd8e4ca5b29d07e472e682bbb5db63a97.zip |
Updated tests for int and ecos functions
Diffstat (limited to 'tests/general_tests/cbcintlinprog/cbcintlinprog_ub1.sce')
-rw-r--r-- | tests/general_tests/cbcintlinprog/cbcintlinprog_ub1.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/general_tests/cbcintlinprog/cbcintlinprog_ub1.sce b/tests/general_tests/cbcintlinprog/cbcintlinprog_ub1.sce new file mode 100644 index 0000000..3803f67 --- /dev/null +++ b/tests/general_tests/cbcintlinprog/cbcintlinprog_ub1.sce @@ -0,0 +1,36 @@ +// Check if a user specifies coefficients of linear inequality contraints of the correct dimensions + +// Reference : Example 2 -1, Travelling salesman , Hamdy A. Taha. "Operations Research-An Introduction", 9E(2014)) + +// Objective function +c = [1000,10,17,15,20,1000,19,18,50,44,1000,22,45,40,20,1000]'; + +// Lower Bound of variable +lb = repmat(0,1,16); +// Upper Bound of variables +ub = repmat(1,1,8) ; + +// Constraint Matrix +Aeq=[1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0; + 0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0; + 0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0; + 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1; + 1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0; + 0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0; + 0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0; + 0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1;] + +beq=repmat(1,1,8) + +intcon = 1:1:16 ; + +// Calling cbcintlinprog +[x,f,status,output] = cbcintlinprog(c,intcon,[],[],Aeq,beq,lb,ub) +// !--error 10000 +//cbcintlinprog: The Upper Bound is not equal to the number of variables +//at line 159 of function cbcmatrixintlinprog called by : +//at line 203 of function cbcintlinprog called by : +//[x,f,status,output] = cbcintlinprog(c,intcon,[],[],Aeq,beq,lb,ub) +//at line 28 of exec file called by : +//exec cbcintlinprog_ub1.sce +// |