diff options
author | Harpreet | 2016-02-02 12:43:07 +0530 |
---|---|---|
committer | Harpreet | 2016-02-02 12:43:07 +0530 |
commit | 9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1 (patch) | |
tree | 5429ee8d920dfb06feb2b9c357211e827ec316f9 /sci_gateway/cpp/LinCLP.hpp | |
parent | f7c5cbc61d5b52c749824298cfa39a95db2d879c (diff) | |
download | symphony-9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1.tar.gz symphony-9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1.tar.bz2 symphony-9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1.zip |
linprog help updated
Diffstat (limited to 'sci_gateway/cpp/LinCLP.hpp')
-rwxr-xr-x | sci_gateway/cpp/LinCLP.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sci_gateway/cpp/LinCLP.hpp b/sci_gateway/cpp/LinCLP.hpp index 90964f4..bd08505 100755 --- a/sci_gateway/cpp/LinCLP.hpp +++ b/sci_gateway/cpp/LinCLP.hpp @@ -43,13 +43,15 @@ class LinCLP double objValue_ =0 ; //Optimal values of objective - double status_ = 0; //Return Status + double status_ = 0; //Return Status double iterations_ = 0; //Number of iteration - double* reducedCost_ = NULL; //Reduced cost + double* Zl_ = NULL; //Reduced cost - double* dual_ = NULL; // Dual of the solution + double* Zu_ = NULL; //Reduced cost + + double* dual_ = NULL; // Dual of the solution public: |