From 29e8e8bbd43892c7fa146c165fdf128f786d6a7b Mon Sep 17 00:00:00 2001 From: Harpreet Date: Mon, 2 Nov 2015 16:20:08 +0530 Subject: README.rst added --- help/en_US/scilab_en_US_help/symphony.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'help/en_US/scilab_en_US_help/symphony.html') diff --git a/help/en_US/scilab_en_US_help/symphony.html b/help/en_US/scilab_en_US_help/symphony.html index 0af9d1b..a1e3eea 100644 --- a/help/en_US/scilab_en_US_help/symphony.html +++ b/help/en_US/scilab_en_US_help/symphony.html @@ -12,7 +12,7 @@
- << qpipopt_mat + << qpipoptmat @@ -20,7 +20,7 @@ - symphony_mat >> + symphonymat >>
@@ -102,7 +102,7 @@ find the minimum or maximum of f(x) such that

xopt = [1 1 0 1 7.25 0 0.25 3.5] fopt = [8495] // Calling Symphony -[x,f,iter] = symphony(8,3,c,isInt,lb,ub,conMatrix,conlb,conub,1);
+[x,f,status,output] = symphony(8,3,c,isInt,lb,ub,conMatrix,conlb,conub,1)

Examples

// An advanced case where we set some options in symphony
@@ -177,7 +177,7 @@ find the minimum or maximum of f(x) such that

conLB=repmat(0,nbCon,1); // Upper Bound of constraints conUB=[11927 13727 11551 13056 13460 ]'; -options = ["time_limit" "25"] +options = list("time_limit", 25); // The expected solution : // Output variables xopt = [0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 0 1 .. @@ -186,7 +186,7 @@ find the minimum or maximum of f(x) such that

// Optimal value fopt = [ 24381 ] // Calling Symphony -[x,f,iter]= symphony(nbVar,nbCon,p,isInt,lb,ub,conMatrix,conLB,conUB,-1,options)
+[x,f,status,output] = symphony(nbVar,nbCon,p,isInt,lb,ub,conMatrix,conLB,conUB,-1,options)

Authors

@@ -197,7 +197,7 @@ find the minimum or maximum of f(x) such that

Report an issue - << qpipopt_mat + << qpipoptmat @@ -205,7 +205,7 @@ find the minimum or maximum of f(x) such that

- symphony_mat >> + symphonymat >> -- cgit