From f7c5cbc61d5b52c749824298cfa39a95db2d879c Mon Sep 17 00:00:00 2001
From: Harpreet
Date: Fri, 29 Jan 2016 16:38:03 +0530
Subject: linprog general tests added
---
help/en_US/qpipoptmat.xml | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
(limited to 'help/en_US/qpipoptmat.xml')
diff --git a/help/en_US/qpipoptmat.xml b/help/en_US/qpipoptmat.xml
index 642971d..d8a9ac3 100644
--- a/help/en_US/qpipoptmat.xml
+++ b/help/en_US/qpipoptmat.xml
@@ -62,8 +62,6 @@
a vector of double, the computed solution of the optimization problem.
fopt :
a double, the value of the function at x.
- residual :
- a vector of double, solution residuals returned as the vector d-C*x.
exitflag :
The exit status. See below for details.
output :
@@ -93,6 +91,16 @@ Search the minimum of a constrained linear quadratic optimization problem specif
The routine calls Ipopt for solving the quadratic problem, Ipopt is a library written in C++.
+The options allows the user to set various parameters of the Optimization problem.
+It should be defined as type "list" and contains the following fields.
+
+Syntax : options= list("MaxIter", [---], "CpuTime", [---]);
+MaxIter : a Scalar, containing the Maximum Number of Iteration that the solver should take.
+CpuTime : a Scalar, containing the Maximum amount of CPU Time that the solver should take.
+Default Values : options = list("MaxIter", [3000], "CpuTime", [600]);
+
+
+
The exitflag allows to know the status of the optimization which is given back by Ipopt.
exitflag=0 : Optimal Solution Found
--
cgit