From 2af2dd71492d5485bd921cfe7b832811881947bb Mon Sep 17 00:00:00 2001
From: Harpreet
Date: Thu, 26 Nov 2015 13:13:46 +0530
Subject: lsqlin added

---
 macros/qpipopt.sci | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'macros/qpipopt.sci')

diff --git a/macros/qpipopt.sci b/macros/qpipopt.sci
index e25aad9..ccf10e4 100644
--- a/macros/qpipopt.sci
+++ b/macros/qpipopt.sci
@@ -298,13 +298,13 @@ function [xopt,fopt,exitflag,output,lambda] = qpipopt (varargin)
 	for i = 1:nbCon
 		if (conLB(i) == %inf)
 		   	errmsg = msprintf(gettext("%s: Value of Lower Bound can not be infinity"), "qpipopt");
-            error(errmsg); 
-        end	
+    		error(errmsg); 
+  		end	
 
 		if (conUB(i) == -%inf)
 		   	errmsg = msprintf(gettext("%s: Value of Upper Bound can not be negative infinity"), "qpipopt");
-            error(errmsg); 
-        end	
+    		error(errmsg); 
+		end	
 	end
 
    [xopt,fopt,status,iter,Zl,Zu,lmbda] = solveqp(nbVar,nbCon,Q,p,conMatrix,conLB,conUB,LB,UB,x0,options);
-- 
cgit