summaryrefslogtreecommitdiff
path: root/sci_gateway/cpp/LinCLP.hpp
diff options
context:
space:
mode:
authorHarpreet2016-02-02 12:43:07 +0530
committerHarpreet2016-02-02 12:43:07 +0530
commit9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1 (patch)
tree5429ee8d920dfb06feb2b9c357211e827ec316f9 /sci_gateway/cpp/LinCLP.hpp
parentf7c5cbc61d5b52c749824298cfa39a95db2d879c (diff)
downloadsymphony-9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1.tar.gz
symphony-9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1.tar.bz2
symphony-9f3ca8b98840ba9dd78ad62dfef0653aedb1d4b1.zip
linprog help updated
Diffstat (limited to 'sci_gateway/cpp/LinCLP.hpp')
-rwxr-xr-xsci_gateway/cpp/LinCLP.hpp8
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: