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_degeneracy2.sce | |
parent | 938fef4a37a7b7c61b4b6ff74cb4cfd2f100c427 (diff) | |
download | symphony-536bbd0cd8e4ca5b29d07e472e682bbb5db63a97.tar.gz symphony-536bbd0cd8e4ca5b29d07e472e682bbb5db63a97.tar.bz2 symphony-536bbd0cd8e4ca5b29d07e472e682bbb5db63a97.zip |
Updated tests for int and ecos functions
Diffstat (limited to 'tests/general_tests/cbcintlinprog/cbcintlinprog_degeneracy2.sce')
-rw-r--r-- | tests/general_tests/cbcintlinprog/cbcintlinprog_degeneracy2.sce | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/general_tests/cbcintlinprog/cbcintlinprog_degeneracy2.sce b/tests/general_tests/cbcintlinprog/cbcintlinprog_degeneracy2.sce new file mode 100644 index 0000000..6f7d9d4 --- /dev/null +++ b/tests/general_tests/cbcintlinprog/cbcintlinprog_degeneracy2.sce @@ -0,0 +1,43 @@ +// Degeneracy + +// Reference : Problem Set 5A,2, The Simplex method and Sensitivity Analysis, Hamdy A. Taha. "Operations Research-An Introduction", 9E(2014)) + +// Objective function +c = [-3,-2]'; + +// Lower Bound of variable +lb = [0,0] +// Upper Bound of variables +ub = [%inf,%inf] + +// Constraint Matrix +A = [4,-1; +4,3; +4,1] + +b=[8,12,8] + +intcon = [1 2]; + +// Calling cbcintlinprog +[x,f,status,output] = cbcintlinprog(c,intcon,A,b,[],[],lb,ub) +//output = +// +// relativegap: 0 +// absolutegap: 0 +// numnodes: 0 +// numfeaspoints: 2 +// numiterations: 2 +// constrviolation: 0 +// message: "Optimal Solution" +// status = +// +// 0. +// f = +// +// - 8. +// x = +// +// 0. +// 4. +// |