diff options
Diffstat (limited to 'newstructure/tests')
-rw-r--r-- | newstructure/tests/bonmin.opt | 1 | ||||
-rw-r--r-- | newstructure/tests/example1.sce | 12 |
2 files changed, 0 insertions, 13 deletions
diff --git a/newstructure/tests/bonmin.opt b/newstructure/tests/bonmin.opt deleted file mode 100644 index 79523fc..0000000 --- a/newstructure/tests/bonmin.opt +++ /dev/null @@ -1 +0,0 @@ -print_level 5 diff --git a/newstructure/tests/example1.sce b/newstructure/tests/example1.sce deleted file mode 100644 index 29d8b33..0000000 --- a/newstructure/tests/example1.sce +++ /dev/null @@ -1,12 +0,0 @@ -// This example has been taken from the MATLAB quadprog page -// http://in.mathworks.com/help/optim/ug/quadprog.html - -H = [1 -1; -1 2]; -f = [-2; -6]; -A = [1 1; -1 2; 2 1]; -b = [2; 2; 3]; -lb=[0,0]; -ub=[%inf, %inf]; -options=list('MaxIterations',1); - -[xopt,fopt,status,output]=intqpipopt(H,f,[],A,b,[],[],lb,ub,[],options) |