summaryrefslogtreecommitdiff
path: root/sci_gateway/cpp/QuadNLP.hpp
diff options
context:
space:
mode:
authorHarpreet2016-08-31 01:43:18 +0530
committerHarpreet2016-08-31 01:43:18 +0530
commit2269cb2d89c9e27b1edeb14849f201e90cbf89f7 (patch)
tree11aeb2a81fc9a0dcbe8aef079f4c4798a260b101 /sci_gateway/cpp/QuadNLP.hpp
parent234aa4fb8bcf86c518444601903fcfee4c40f59a (diff)
downloadFOSSEE-Optimization-toolbox-2269cb2d89c9e27b1edeb14849f201e90cbf89f7.tar.gz
FOSSEE-Optimization-toolbox-2269cb2d89c9e27b1edeb14849f201e90cbf89f7.tar.bz2
FOSSEE-Optimization-toolbox-2269cb2d89c9e27b1edeb14849f201e90cbf89f7.zip
Windows 32 bit bug fixed and third party updated
Diffstat (limited to 'sci_gateway/cpp/QuadNLP.hpp')
-rw-r--r--sci_gateway/cpp/QuadNLP.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sci_gateway/cpp/QuadNLP.hpp b/sci_gateway/cpp/QuadNLP.hpp
index 4e0da42..d7e7da4 100644
--- a/sci_gateway/cpp/QuadNLP.hpp
+++ b/sci_gateway/cpp/QuadNLP.hpp
@@ -106,16 +106,16 @@ class QuadNLP : public TNLP
const IpoptData* ip_data,
IpoptCalculatedQuantities* ip_cq);
- const double * getX(); //Returns a pointer to a matrix of size of 1*numVar
+ double * getX(); //Returns a pointer to a matrix of size of 1*numVar
// with final value for the primal variables.
- const double * getZu(); //Returns a pointer to a matrix of size of 1*numVars
+ double * getZu(); //Returns a pointer to a matrix of size of 1*numVars
// with final values for the upper bound multipliers
- const double * getZl(); //Returns a pointer to a matrix of size of 1*numVars
+ double * getZl(); //Returns a pointer to a matrix of size of 1*numVars
// with final values for the upper bound multipliers
- const double * getLambda(); //Returns a pointer to a matrix of size of 1*numConstr
+ double * getLambda(); //Returns a pointer to a matrix of size of 1*numConstr
// with final values for the constraint multipliers