From 3cccf754ab8c8b31e0d1c0a7fc31bff1fadb283f Mon Sep 17 00:00:00 2001 From: Keyur Joshi Date: Tue, 29 Sep 2015 10:22:50 +0530 Subject: Created .gitignore This will prevent compiled things from being uploaded to the repo. Only code will be uploaded to the repo. However, this may require the user to use builder.sce to compile the library first and then loader.sce--- .gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1bab62f --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# Scilab generates these by itself upon running builder.sce +cleaner.sce +loader.sce +unloader.sce +*.bin + +# Libraries +lib*.c +*.so + +# Temporary files +*~ +*.swp + +# Other +*.pdf +*.gz -- cgit From a108ebaa0c1f6c593221693e63834448be86c93b Mon Sep 17 00:00:00 2001 From: OR-FOSSEE Date: Wed, 30 Sep 2015 00:02:48 +0530 Subject: It will also ignore third party files & other important files. --- .gitignore | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1bab62f..0000000 --- a/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -# Scilab generates these by itself upon running builder.sce -cleaner.sce -loader.sce -unloader.sce -*.bin - -# Libraries -lib*.c -*.so - -# Temporary files -*~ -*.swp - -# Other -*.pdf -*.gz -- cgit From c2679735a3443017e003ca095d0476bae2dd8e40 Mon Sep 17 00:00:00 2001 From: OR-FOSSEE Date: Tue, 20 Oct 2015 14:33:10 +0530 Subject: Update qpipopt.sci --- macros/qpipopt.sci | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/macros/qpipopt.sci b/macros/qpipopt.sci index 0d1b6b6..8c0d5c9 100644 --- a/macros/qpipopt.sci +++ b/macros/qpipopt.sci @@ -21,9 +21,9 @@ function [xopt,fopt,exitflag,output,lambda] = qpipopt (varargin) // nbVar : a 1 x 1 matrix of doubles, number of variables // nbCon : a 1 x 1 matrix of doubles, number of constraints // Q : a n x n matrix of doubles, where n is number of variables, represents coefficients of quadratic in the quadratic problem. - // p : a 1 x n matrix of doubles, where n is number of variables, represents coefficients of linear in the quadratic problem - // LB : a 1 x n matrix of doubles, where n is number of variables, contains lower bounds of the variables. - // UB : a 1 x n matrix of doubles, where n is number of variables, contains upper bounds of the variables. + // p : a n x 1 matrix of doubles, where n is number of variables, represents coefficients of linear in the quadratic problem + // LB : a n x 1 matrix of doubles, where n is number of variables, contains lower bounds of the variables. + // UB : a n x 1 matrix of doubles, where n is number of variables, contains upper bounds of the variables. // conMatrix : a m x n matrix of doubles, where n is number of variables and m is number of constraints, contains matrix representing the constraint matrix // conLB : a m x 1 matrix of doubles, where m is number of constraints, contains lower bounds of the constraints. // conUB : a m x 1 matrix of doubles, where m is number of constraints, contains upper bounds of the constraints. -- cgit