1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2015 - IIT Bombay - FOSSEE
//
// Authors: Prajwala TM,Sheetal Shalini
// Organization: FOSSEE, IIT Bombay
// Email: prajwala.tm@gmail.com,sheetalsh456@gmail.com
// This file must be used under the terms of the CeCILL.
// This source file is licensed as described in the file COPYING, which
// you should have received as part of this distribution. The terms
// are also available at
// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
function [x,fval,attainfactor,exitflag,output,lambda] = fgoalattain(varargin)
// Solves a multiobjective goal attainment problem
//
// Calling Sequence
// x = fgoalattain(fun,x0,goal,weight)
// x = fgoalattain(fun,x0,goal,weight,A,b)
// x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq)
// x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub)
// x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub,nonlcon)
// x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub,nonlcon,options)
// [x,fval] = fgoalattain(...)
// [x,fval,attainfactor] = fgoalattain(...)
// [x,fval,attainfactor,exitflag] = fgoalattain(...)
// [x,fval,attainfactor,exitflag,output] = fgoalattain(...)
// [x,fval,attainfactor,exitflag,output,lambda] = fgoalattain(...)
//
// Parameters
// fun: a function that accepts a vector x and returns a vector F
// x0: a nx1 or 1xn matrix of double, where n is the number of variables.
// The initial guess for the optimization algorithm
// A: a nil x n matrix of double, where n is the number of variables and
// nil is the number of linear inequalities.
//
// b: a nil x 1 matrix of double, where nil is the number of linear
// inequalities
// Aeq: a nel x n matrix of double, where n is the number of variables
// and nel is the number of linear equalities.
// beq: a nel x 1 matrix of double, where nel is the number of linear
// equalities
// lb: a nx1 or 1xn matrix of double, where n is the number of variables.
// The lower bound for x. If lb==[], then the lower bound is
// automatically set to -inf
// ub: a nx1 or 1xn matrix of double, where n is the number of variables.
// The upper bound for x. If ub==[], then the upper bound is
// automatically set to +inf
// nonlcon: a function, the nonlinear constraints
// options : a list, containing the option for user to specify. See below for details.
// x: a nx1 matrix of double, the computed solution of the optimization problem
// fval: a vector of double, the value of functions at x
// attainfactor: The amount of over- or underachievement of the goals,γ at the solution.
// exitflag: a 1x1 matrix of floating point integers, the exit status
// output: a struct, the details of the optimization process
// lambda: a struct, the Lagrange multipliers at optimum
//
// Description
// fgoalattain solves the goal attainment problem, which is one formulation for minimizing a multiobjective optimization problem.
// Finds the minimum of a problem specified by:
// Minimise Y such that
//
//<latex>
//\begin{eqnarray}
//\mbox{min}_{x,\gamma} & f(x)-weight \ast \gamma \leq goal \\
//\mbox{subject to} & c(x) \leq 0 \\
// & c_{eq}(x) = 0 \\
// & Ax \leq b \\
// & A_{eq} x = b_{eq} \\
// & lb \leq x \leq ub
//\end{eqnarray}
//</latex>
//
// The solver makes use of fmincon to find the minimum.
//
// The fgoalattain finds out the maximum value of Y for the objectives evaluated at the starting point and
// adds that as another variable to the vector x
// This is passed to the fmincon function to get the optimised value of Y
// Hence, the algorithm used mainly is "ipopt" to obtain the optimum solution
// The relations between f(x), Y, weights and goals are added as additional non-linear inequality constraints
//
// 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.
// <itemizedlist>
// <listitem>Syntax : options= list("MaxIter", [---], "CpuTime", [---], "GradObj", ---, "GradCon", ---);</listitem>
// <listitem>MaxIter : a Scalar, containing the Maximum Number of Iteration that the solver should take.</listitem>
// <listitem>CpuTime : a Scalar, containing the Maximum amount of CPU Time that the solver should take.</listitem>
// <listitem>GradObj : a function, representing the gradient function of the Objective in Vector Form.</listitem>
// <listitem>GradCon : a function, representing the gradient of the Non-Linear Constraints (both Equality and Inequality) of the problem. It is declared in such a way that gradient of non-linear inequality constraints are defined first as a separate Matrix (cg of size m2 X n or as an empty), followed by gradient of non-linear equality constraints as a separate Matrix (ceqg of size m2 X n or as an empty) where m2 & m3 are number of non-linear inequality and equality constraints respectively.</listitem>
// <listitem>Default Values : options = list("MaxIter", [3000], "CpuTime", [600]);</listitem>
// </itemizedlist>
//
// By default, the gradient options for fminimax are turned off and and fmincon does the gradient opproximation of gattainObjfun. In case the GradObj option is off and GradConstr option is on, fminimax approximates gattainObjfun gradient using numderivative toolbox.
//
// If we can provide exact gradients, we should do so since it improves the convergence speed of the optimization algorithm.
//
// Furthermore, we must enable the "GradObj" option with the statement :
// <programlisting>
// minimaxOptions = list("GradObj",fGrad);
// </programlisting>
// This will let fminimax know that the exact gradient of the objective function is known, so that it can change the calling sequence to the objective function. Note that, fGrad should be mentioned in the form of N x n where n is the number of variables, N is the number of functions in objective function.
//
// The constraint function must have header :
// <programlisting>
// [c, ceq] = confun(x)
// </programlisting>
// where x is a n x 1 matrix of doubles, c is a 1 x nni matrix of doubles and ceq is a 1 x nne matrix of doubles (nni : number of nonlinear inequality constraints, nne : number of nonlinear equality constraints).
// On input, the variable x contains the current point and, on output, the variable c must contain the nonlinear inequality constraints and ceq must contain the nonlinear equality constraints.
//
// By default, the gradient options for fminimax are turned off and and fmincon does the gradient opproximation of confun. In case the GradObj option is on and GradCons option is off, fminimax approximates confun gradient using numderivative toolbox.
//
// If we can provide exact gradients, we should do so since it improves the convergence speed of the optimization algorithm.
//
// Furthermore, we must enable the "GradCon" option with the statement :
// <programlisting>
// minimaxOptions = list("GradCon",confunGrad);
// </programlisting>
// This will let fminimax know that the exact gradient of the objective function is known, so that it can change the calling sequence to the objective function.
//
// The constraint derivative function must have header :
// <programlisting>
// [dc,dceq] = confungrad(x)
// </programlisting>
// where dc is a nni x n matrix of doubles and dceq is a nne x n matrix of doubles.
//
// The exitflag allows to know the status of the optimization which is given back by Ipopt.
// <itemizedlist>
// <listitem>exitflag=0 : Optimal Solution Found </listitem>
// <listitem>exitflag=1 : Maximum Number of Iterations Exceeded. Output may not be optimal.</listitem>
// <listitem>exitflag=2 : Maximum amount of CPU Time exceeded. Output may not be optimal.</listitem>
// <listitem>exitflag=3 : Stop at Tiny Step.</listitem>
// <listitem>exitflag=4 : Solved To Acceptable Level.</listitem>
// <listitem>exitflag=5 : Converged to a point of local infeasibility.</listitem>
// </itemizedlist>
//
// For more details on exitflag see the ipopt documentation, go to http://www.coin-or.org/Ipopt/documentation/
//
// The output data structure contains detailed informations about the optimization process.
// It has type "struct" and contains the following fields.
// <itemizedlist>
// <listitem>output.Iterations: The number of iterations performed during the search</listitem>
// <listitem>output.Cpu_Time: The total cpu-time spend during the search</listitem>
// <listitem>output.Objective_Evaluation: The number of Objective Evaluations performed during the search</listitem>
// <listitem>output.Dual_Infeasibility: The Dual Infeasiblity of the final soution</listitem>
// </itemizedlist>
//
// The lambda data structure contains the Lagrange multipliers at the end
// of optimization. In the current version the values are returned only when the the solution is optimal.
// It has type "struct" and contains the following fields.
// <itemizedlist>
// <listitem>lambda.lower: The Lagrange multipliers for the lower bound constraints.</listitem>
// <listitem>lambda.upper: The Lagrange multipliers for the upper bound constraints.</listitem>
// <listitem>lambda.eqlin: The Lagrange multipliers for the linear equality constraints.</listitem>
// <listitem>lambda.ineqlin: The Lagrange multipliers for the linear inequality constraints.</listitem>
// <listitem>lambda.eqnonlin: The Lagrange multipliers for the non-linear equality constraints.</listitem>
// <listitem>lambda.ineqnonlin: The Lagrange multipliers for the non-linear inequality constraints.</listitem>
// </itemizedlist>
//
// Examples
// function f1 = gattainObjfun(x)
// f1(1)=2*x(1)*x(1)+x(2)*x(2)-48*x(1)-40*x(2)+304
// f1(2)=-x(1)*x(1)-3*x(2)*x(2)
// f1(3)=x(1)+3*x(2)-18
// f1(4)=-x(1)-x(2)
// f1(5)=x(1)+x(2)-8
// endfunction
// x0=[-1,1];
//
// goal=[-5,-3,-2,-1,-4];
// weight=abs(goal)
// gval =
// [- 0.0000011
// - 63.999998
// - 2.0000002
// - 8.
// 3.485D-08]
// z =
// [4. 3.99]
//
// Run fgoalattain
// [x,fval,attainfactor,exitflag,output,lambda]=fgoalattain(gattainObjfun,x0,goal,weight)
//
// Authors
// Prajwala TM, Sheetal Shalini , 2015
// Check number of input and output arguments
[gattainLhs,gattainRhs] = argn()
Checkrhs("fgoalattain", gattainRhs, [4 6 8 10 11 12])
Checklhs("fgoalattain", gattainLhs, 1:6)
// initialisation of fun
gattainObjfun = varargin(1)
Checktype("fgoalattain", gattainObjfun, "fun", 1, "function")
// initialisation of x0
gattainStartpoint = varargin(2)
Checktype("fgoalattain", gattainStartpoint, "x0", 2, "constant")
gattainNumvar = size(gattainStartpoint,"*")
Checkvector("fgoalattain", gattainStartpoint, "x0", 2, gattainNumvar)
gattainStartpoint = gattainStartpoint(:)
// initialisation of goal
goal=varargin(3)
Checktype("fgoalattain",goal,"goal",3,"constant")
// initialisation of weight
weight=varargin(4)
Checktype("fgoalattain",weight,"weight",4,"constant")
//initialisation of A and b
if(gattainRhs < 5) then
gattainA = []
gattainB = []
else
gattainA = varargin(5)
gattainB = varargin(6)
end
Checktype("fgoalattain", gattainA, "A", 5, "constant")
Checktype("fgoalattain", gattainB, "b", 6, "constant")
gattainNumrowA = size(gattainA,"r")
if(gattainA <> []) then
Checkdims("fgoalattain", gattainA, "A", 5, [gattainNumrowA gattainNumvar])
Checkvector("fgoalattain", gattainB, "b", 6, gattainNumrowA)
gattainB = gattainB(:)
end
//initialisation of Aeq and beq
if(gattainRhs < 7) then
gattainAeq = []
gattainBeq = []
else
gattainAeq = varargin(7)
gattainBeq = varargin(8)
end
Checktype("fgoalattain", gattainAeq, "Aeq", 7, "constant")
Checktype("fgoalattain", gattainBeq, "beq", 8, "constant")
gattainNumrowAeq = size(gattainAeq,"r")
if(gattainAeq <> []) then
Checkdims("fgoalattain", gattainAeq, "Aeq", 7, [gattainNumrowAeq gattainNumvar])
Checkvector("fgoalattain", gattainBeq, "beq", 8, gattainNumrowAeq)
gattainBeq = gattainBeq(:)
end
// initialisation of lb and ub
if(gattainRhs < 9) then
gattainLb = []
gattainUb = []
else
gattainLb = varargin(9)
gattainUb = varargin(10)
end
Checktype("fgoalattain", gattainLb, "lb", 9, "constant")
Checktype("fgoalattain", gattainUb, "ub", 10, "constant")
// Check dimensions of lb and ub
if(gattainLb <> []) then
Checkvector("fgoalattain", gattainLb, "lb", 9, gattainNumvar)
gattainLb = gattainLb(:)
end
if(gattainUb <> []) then
Checkvector("fgoalattain", gattainUb, "ub", 10, gattainNumvar)
gattainUb = gattainUb(:)
end
// Initialisation of nonlcon
function [c,ceq] = constr(z)
c = []
ceq = []
endfunction
if(gattainRhs < 11) then
gattainNonlinfun = constr
else
gattainNonlinfun = varargin(11)
end
Checktype("fgoalattain", gattainNonlinfun, "nonlcon", 11, "function")
// initialisation of default options
if(gattainRhs < 12) then
gattainUserOptions = list()
else
gattainUserOptions = varargin(12)
end
//If gattainOptions is entered then checking its type for 'list'
if (type(gattainUserOptions) ~= 15) then
errmsg = msprintf(gettext("%s: gattainOptions (10th parameter) should be a list"), "fgoalattain");
error(errmsg);
end
//If minimaxOptions is entered then checking whether even number of entires are entered
if (modulo(size(gattainUserOptions),2)) then
errmsg = msprintf(gettext("%s: Size of gattainOptions (list) should be even"), "fgoalattain");
error(errmsg);
end
//Flags to check whether Gradient is "ON"/"OFF" & Hessian is "ON"/"OFF"
flag1=0;
flag2=0;
fgaMaxIter = 3000;
fgaCPU = 600;
gattainFGrad=[];
gattainCGrad=[];
//To check the User Entry for Options and storing it
for i = 1:(size(gattainUserOptions))/2
select gattainUserOptions(2*i-1)
case "MaxIter" then
fgaMaxIter = gattainUserOptions(2*i); //Setting the Maximum Iteration as per user entry
case "CpuTime" then
fgaCPU = gattainUserOptions(2*i); //Setting the Maximum CPU Time as per user entry
case "GradObj" then
if (type(gattainUserOptions(2*i))==10) then
if (convstr(gattainUserOptions(2*i))=="off") then
flag1 = 0;
else
errmsg = msprintf(gettext("%s: Unrecognized String %s entered for the option- %s."), "fgoalattain",gattainUserOptions(2*i), gattainUserOptions(2*i-1));
error(errmsg);
end
else
flag1 = 1;
gattainFGrad = gattainUserOptions(2*i);
end
case "GradCon" then
if (type(gattainUserOptions(2*i))==10) then
if (convstr(gattainUserOptions(2*i))=="off") then
flag2 = 0;
else
errmsg = msprintf(gettext("%s: Unrecognized String %s entered for the option- %s."), "fgoalattain",gattainUserOptions(2*i), gattainUserOptions(2*i-1));
error(errmsg);
end
else
flag2 = 1;
gattainCGrad = gattainUserOptions(2*i);
end
else
errmsg = msprintf(gettext("%s: Unrecognized gattainUserOptionseter name ''%s''."), "fminimax", gattainUserOptions(2*i-1));
error(errmsg)
end
end
// Checking if gattainFGrad and gattainCGrad are functions
if (flag1==1) then
if (type(gattainFGrad) ~= 11 & type(gattainFGrad) ~= 13) then
errmsg = msprintf(gettext("%s: Expected function for Gradient of Objective"), "fminimax");
error(errmsg);
end
end
if (flag2==1) then
if (type(gattainCGrad) ~= 11 & type(gattainCGrad) ~= 13) then
errmsg = msprintf(gettext("%s: Expected function for Gradient of Nonlinfun"), "fminimax");
error(errmsg);
end
end
gattainObjfunval = gattainObjfun(gattainStartpoint)
gattainObjfunval=gattainObjfunval(:)
goal=goal(:)
weight=weight(:)
gaVal=[]
// appending the gamma value as another variable
for i=1:size(gattainObjfunval,'r')
if(weight(i)<>0) then
gaVal(i)=((gattainObjfunval(i)-goal(i))/weight(i))
end
end
gattainStartpoint(gattainNumvar+1)=max(gaVal)
if(gattainA <> []) then
gattainA = [gattainA, zeros(gattainNumrowA,1)]
end
if(gattainAeq <> []) then
gattainAeq = [gattainAeq, zeros(gattainNumrowAeq,1)]
end
if(gattainLb <> []) then
gattainLb(gattainNumvar+1) = -%inf
end
if(gattainUb <> []) then
gattainUb(gattainNumvar+1) = +%inf
end
// function handle defining the additional inequalities
function temp = gattainAddIneq(z)
gaVar = gattainObjfun(z)
gattainAddIneqWithWt = []
gattainAddIneqWitoutWt = []
for i = 1:size(gaVar,'r')
if(weight(i) <> 0) then
gattainAddIneqWithWt = [gattainAddIneqWithWt; ( (gaVar(i)-goal(i))/weight(i) )]
else
gattainAddIneqWitoutWt = [gattainAddIneqWitoutWt; gaVar(i)-goal(i)]
end
end
temp = [gattainAddIneqWithWt - z(gattainNumvar+1); gattainAddIneqWitoutWt]
endfunction
// function handle defining new objective function
function newfunc = newObjfun(z)
newfunc = z(gattainNumvar+1)
endfunction
// function handle defining add_ineq derivative using numderivative
function func = gattainIneqDer(z)
func = numderivative(gattainAddIneq,z)
endfunction
// function handle defining nonlcon derivative using numderivative
function [dc,dceq] = gattainNonlinDer(z)
// function handle extracting c and ceq components from nonlcon
function foo = gattainC(z)
[foo,tmp1] = gattainNonlinfun(z)
foo = foo'
endfunction
function foo = gattainCEQ(z)
[tmp1,foo] = gattainNonlinfun(z)
foo = foo'
endfunction
dc = numderivative(gattainC,z)
dceq = numderivative(gattainCEQ,z)
endfunction
// function handle defining new nonlcon function
function [nc,nceq] = newNonlinfun(z)
[nc,nceq] = gattainNonlinfun(z)
tmp = [gattainAddIneq(z)]'
nc = [nc, tmp]
endfunction
function [dnc,dnceq] = newCGrad(z)
// check if "GradCon" option is turned on
// if "GradCon" is turned on, use it
if(flag2 == 1) then
[dnc,dnceq] = gattainCGrad(z)
dnc = [dnc, zeros(size(dnc,'r'),1)]
dnceq = [dnceq, zeros(size(dnceq,'r'),1)]
// else, calculate it using finite differences
else
[dnc,dnceq] = gattainNonlinDer(z)
end
// check if "GradObj" option is turned on
// if "GradObj" is turned on, use it
if(flag1 == 1) then
derObjfun = gattainFGrad(z)
tmp1 = []
tmp2 = []
for i = 1:size(gattainObjfun(gattainStartpoint),'r')
if weight(i) <> 0 then
gaVal = [derObjfun(i,:)/weight(i) , -1]
tmp1 = [ tmp1; gaVal ]
else
gaVal = [derObjfun(i,:) , 0]
tmp2 = [ tmp2; gaVal ]
end
end
dnc = [ dnc; tmp1; tmp2 ]
// else, calculate it using finite differences
else
deraddineq = gattainIneqDer(z)
dnc = [dnc; deraddineq]
end
endfunction
// disp(gattainStartpoint)
// disp(gattainObjfun(gattainStartpoint))
// disp(newObjfun(gattainStartpoint))
// disp(goal)
// disp(weight)
//
// disp(gattainA)
// disp(gattainB)
// disp(gattainAeq)
// disp(gattainBeq)
// disp(gattainLb)
// disp(gattainUb)
//
// [f,g] = gattainNonlinfun(gattainStartpoint)
// disp(f)
// disp(g)
// [f,g] = newNonlinfun(gattainStartpoint)
// disp(f)
// disp(g)
//
// // function foo = CgattainC(z)
// // [foo,tmp1] = newNonlinfun(z)
// // endfunction
// //
// // function foo = CgattainCEQ(z)
// // [tmp1,foo] = newNonlinfun(z)
// // endfunction
// //
// // // function handle defining gattainNonlinfun derivative using numderivative
// // function [dc,dceq] = derrNonlinApp(z)
// // dc = numderivative(CgattainC,z)
// // dceq = numderivative(CgattainCEQ,z)
// // endfunction
//
// // [f,g] = derrNonlinApp(gattainStartpoint)
// // disp(f)
// // disp(g)
//
// [f,g] = newCGrad(gattainStartpoint)
// disp(f)
// disp(g)
//to be passed as options to fmincon
if (flag1 == 1 | flag2 == 1) then
gattainPassOptions = list("MaxIter", fgaMaxIter, "CpuTime", fgaCPU, "GradCon", newCGrad)
[x,attainfactor,exitflag,output,lambda] = fmincon(newObjfun,gattainStartpoint,gattainA,gattainB,gattainAeq,gattainBeq,gattainLb,gattainUb,newNonlinfun,gattainPassOptions)
x= x(1:gattainNumvar)
fval = gattainObjfun(x)
else
gattainPassOptions = list("MaxIter", fgaMaxIter, "CpuTime", fgaCPU)
[x,attainfactor,exitflag,output,lambda] = fmincon(newObjfun,gattainStartpoint,gattainA,gattainB,gattainAeq,gattainBeq,gattainLb,gattainUb,newNonlinfun,gattainPassOptions)
x= x(1:gattainNumvar)
fval = gattainObjfun(x)
end
endfunction
|