This file is indexed.

/usr/share/pyshared/openopt/solvers/BrasilOpt/algencan_oo.py is in python-openopt 0.38+svn1589-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
__docformat__ = "restructuredtext en"
from numpy import *
from openopt.kernel.baseSolver import baseSolver
import pywrapper
from openopt.kernel.setDefaultIterFuncs import SMALL_DF

class algencan(baseSolver):
    __name__ = 'algencan'
    __license__ = "GPL"
    __authors__ = 'J. M. Martinez martinezimecc@gmail.com, Ernesto G. Birgin egbirgin@ime.usp.br, Jan Marcel Paiva Gentil jgmarcel@ime.usp.br'
    __alg__ = "Augmented Lagrangian Multipliers"
    __homepage__ = 'http://www.ime.usp.br/~egbirgin/tango/'
    #TODO: edit info!
    __info__ = "please pay more attention to gtol param, it's the only one ALGENCAN positive stop criterium, xtol and ftol are unused"
    __optionalDataThatCanBeHandled__ = ['A', 'Aeq', 'b', 'beq', 'lb', 'ub', 'c', 'h']
    __isIterPointAlwaysFeasible__ = lambda self, p: p.__isNoMoreThanBoxBounded__()
    __cannotHandleExceptions__ = True

    def __init__(self): pass
    def __solver__(self, p):
        def inip():
            """This subroutine must set some problem data.

            For achieving this objective YOU MUST MODIFY it according to your
            problem. See below where your modifications must be inserted.

            Parameters of the subroutine:

            On Entry:

            This subroutine has no input parameters.

            On Return

            n        integer,
                     number of variables,

            x        double precision x(n),
                     initial point,

            l        double precision l(n),
                     lower bounds on x,

            u        double precision u(n),
                     upper bounds on x,

            m        integer,
                     number of constraints (excluding the bounds),

            lambda   double precision lambda(m),
                     initial estimation of the Lagrange multipliers,

            equatn   logical equatn(m)
                     for each constraint j, set equatn(j) = .true. if it is an
                     equality constraint of the form c_j(x) = 0, and set
                     equatn(j) = .false. if it is an inequality constraint of
                     the form c_j(x) <= 0,

            linear   logical linear(m)
                     for each constraint j, set linear(j) = .true. if it is a
                     linear constraint, and set linear(j) = .false. if it is a
                     nonlinear constraint.
            """

            #   Number of variables

            n = p.n

            #   Number of constraints (equalities plus inequalities)
#            if p.userProvided.c:  nc = p.c(p.x0).size
#            else: nc = 0
#            if p.userProvided.h:  nh = p.h(p.x0).size
#            else: nh = 0
            nc,  nh = p.nc, p.nh
            nb, nbeq = p.b.size, p.beq.size
            #p.algencan.nc, p.algencan.nh, p.algencan.nb, p.algencan.nbeq = nc, nh, nb, nbeq

            m = nc + nh + nb + nbeq

            #   Initial point

            x = p.x0

            #   Lower and upper bounds

            l = p.lb
            l[l<-1.0e20] = -1.0e20

            u = p.ub
            u[u>1.0e20] = 1.0e20

            #   Lagrange multipliers approximation. Most users prefer to use the
            #   null initial Lagrange multipliers estimates. However, if the
            #   problem that you are solving is "slightly different" from a
            #   previously solved problem of which you know the correct Lagrange
            #   multipliers, we encourage you to set these multipliers as initial
            #   estimates. Of course, in this case you are also encouraged to use
            #   the solution of the previous problem as initial estimate of the
            #   solution. Similarly, most users prefer to use rho = 10 as initial
            #   penalty parameters. But in the case mentioned above (good
            #   estimates of solution and Lagrange multipliers) larger values of
            #   the penalty parameters (say, rho = 1000) may be more useful. More
            #   warm-start procedures are being elaborated.

            lambda_ = zeros(m)

            #   For each constraint i, set equatn[i] = 1. if it is an equality
            #   constraint of the form c_i(x) = 0, and set equatn[i] = 0 if
            #   it is an inequality constraint of the form c_i(x) <= 0.


            equatn = array( [False]*nc + [True]*nh + [False]*nb + [True]*nbeq)



            #   For each constraint i, set linear[i] = 1 if it is a linear
            #   constraint, otherwise set linear[i] = 0.

            linear = array( [False]*nc + [False]*nh + [True]*nb + [True]*nbeq)


            coded = [True,  # evalf
                     True,  # evalg
                     p.userProvided.d2f,  # evalh
                     True,  # evalc
                     True,  # evaljac
                     False,  # evalhc
                     False, # evalfc
                     False, # evalgjac
                     False, # evalhl
                     False] # evalhlp

            checkder = False
            #checkder = 1

            return n,x,l,u,m,lambda_,equatn.tolist(),linear.tolist(),coded,checkder

        #   ******************************************************************
        #   ******************************************************************

        def evalf(x):
            """This subroutine must compute the objective function.

            For achieving this objective YOU MUST MODIFY it according to your
            problem. See below where your modifications must be inserted.

            Parameters of the subroutine:

            On Entry:

            x        double precision x(n),
                     current point,

            On Return

            f        double precision,
                     objective function value at x,

            flag     integer,
                     You must set it to any number different of 0 (zero) if
                     some error ocurred during the evaluation of the objective
                     function. (For example, trying to compute the square root
                     of a negative number, dividing by zero or a very small
                     number, etc.) If everything was o.k. you must set it
                     equal to zero.
            """

            f = p.f(x)

            if f is not nan: flag = 0
            else: flag = 1

            return f,flag

        #   ******************************************************************
        #   ******************************************************************

        def evalg(x):
            """This subroutine must compute the gradient vector of the objective \
        function.

            For achieving these objective YOU MUST MODIFY it in the way specified
            below. However, if you decide to use numerical derivatives (we dont
            encourage this option at all!) you dont need to modify evalg.

            Parameters of the subroutine:

            On Entry:

            x        double precision x(n),
                     current point,

            On Return

            g        double precision g(n),
                     gradient vector of the objective function evaluated at x,

            flag     integer,
                     You must set it to any number different of 0 (zero) if
                     some error ocurred during the evaluation of any component
                     of the gradient vector. (For example, trying to compute
                     the square root of a negative number, dividing by zero or
                     a very small number, etc.) If everything was o.k. you
                     must set it equal to zero.
            """

            g = p.df(x)
            if any(isnan(g)): flag = 1
            else: flag = 0

            return g,flag

        #   ******************************************************************
        #   ******************************************************************

        def evalh(x):
#            """This subroutine might compute the Hessian matrix of the objective \
#        function.
#
#            For achieving this objective YOU MAY MODIFY it according to your
#            problem. To modify this subroutine IS NOT MANDATORY. See below
#            where your modifications must be inserted.
#
#            Parameters of the subroutine:
#
#            On Entry:
#
#            x        double precision x(n),
#                     current point,
#
#            On Return
#
#            nnzh     integer,
#                     number of perhaps-non-null elements of the computed
#                     Hessian,
#
#            hlin     integer hlin(nnzh),
#                     see below,
#
#            hcol     integer hcol(nnzh),
#                     see below,
#
#            hval     double precision hval(nnzh),
#                     the non-null value of the (hlin(k),hcol(k)) position
#                     of the Hessian matrix of the objective function must
#                     be saved at hval(k). Just the lower triangular part of
#                     Hessian matrix must be computed,
#
#            flag     integer,
#                     You must set it to any number different of 0 (zero) if
#                     some error ocurred during the evaluation of the Hessian
#                     matrix of the objective funtion. (For example, trying
#                     to compute the square root of a negative number,
#                     dividing by zero or a very small number, etc.) If
#                     everything was o.k. you must set it equal to zero.
#            """
#
            flag = 0
#            if hasattr(self, 'd2f'):
#                return self.d2f

            try:
                H = p.d2f(x)
            except:
                nnzh = 0
                hlin = zeros(nnzh, int)
                hcol = zeros(nnzh, int)
                hval = zeros(nnzh, float)
                flag = 1
                return hlin,hcol,hval,nnzh,flag

            ind = H.nonzero()
            (ind_0, ind_1) = ind
            ind_greater = ind_0 >= ind_1
            ind_0, ind_1 = ind_0[ind_greater], ind_1[ind_greater]

            nnzh = ind_0.size
            val = H[(ind_0, ind_1)]
            hlin, hcol, hval = ind_0, ind_1, val

#            if lower(p.castFrom) in ('QP', 'LLSP'):
#                self.d2f = hlin,hcol,hval,nnzh,flag

            return hlin,hcol,hval,nnzh,flag

        #   ******************************************************************
        #   ******************************************************************

        def evalc(x,ind):
            """This subroutine must compute the ind-th constraint.

            For achieving this objective YOU MUST MOFIFY it according to your
            problem. See below the places where your modifications must be
            inserted.

            Parameters of the subroutine:

            On Entry:

            x        double precision x(n),
                     current point,

            ind      integer,
                     index of the constraint to be computed,

            On Return

            c        double precision,
                     i-th constraint evaluated at x,

            flag     integer
                     You must set it to any number different of 0 (zero) if
                     some error ocurred during the evaluation of the
                     constraint. (For example, trying to compute the square
                     root of a negative number, dividing by zero or a very
                     small number, etc.) If everything was o.k. you must set
                     it equal to zero.
            """
            flag = 0

            #TODO: recalculate i-th constraint, not all

            i = ind - 1 # Python enumeration starts from 0, not 1

            if i < p.nc:
                c = p.c(x, i)
            elif p.nc <= i < p.nc + p.nh:
                c = p.h(x, i-p.nc)
            elif p.nc + p.nh <= i < p.nc + p.nh + p.nb:
                j = i - p.nc - p.nh
                c = p.dotmult(p.A[j], x).sum() - p.b[j]
            elif i < p.nc + p.nh + p.nb + p.nbeq:
                j = i - p.nc - p.nh - p.nb
                c = p.dotmult(p.Aeq[j], x).sum() - p.beq[j]
            else:
                flag = -1
                p.err('error in connection algencan to openopt')

            if any(isnan(c)): flag = -1

            return c,flag

        #   ******************************************************************
        #   ******************************************************************

        def evaljac(x,ind):
            """This subroutine must compute the gradient of the ind-th constraint.

            For achieving these objective YOU MUST MODIFY it in the way specified
            below.

            Parameters of the subroutine:

            On Entry:

            x        double precision x(n),
                     current point,

            ind      integer,
                     index of the constraint whose gradient will be computed,

            On Return

            nnzjac   integer,
                     number of perhaps-non-null elements of the computed
                     gradient,

            indjac   integer indjac(nnzjac),
                     see below,

            valjac   double precision valjac(nnzjac),
                     the non-null value of the partial derivative of the i-th
                     constraint with respect to the indjac(k)-th variable must
                     be saved at valjac(k).

            flag     integer
                     You must set it to any number different of 0 (zero) if
                     some error ocurred during the evaluation of the
                     constraint. (For example, trying to compute the square
                     root of a negative number, dividing by zero or a very
                     small number, etc.) If everything was o.k. you must set
                     it equal to zero.
            """


            flag = 0

            #TODO: recalculate i-th constraint, not all

            i = ind - 1 # Python enumeration starts from 0, not 1

            if i < p.nc:
                dc = p.dc(x, i)
            elif p.nc <= i < p.nc + p.nh:
                dc = p.dh(x, i-p.nc)
            elif p.nc + p.nh <= i < p.nc + p.nh + p.nb:
                j = i - p.nc - p.nh
                dc = p.A[j]
            elif i < p.nc + p.nh + p.nb + p.nbeq:
                j = i - p.nc - p.nh - p.nb
                dc = p.Aeq[j]
            else:
                p.err('error in connection algencan to openopt')

            dc = dc.flatten()

            if any(isnan(dc)):
                flag = -1
                if p.debug: p.warn('algencan: nan in jacobian')

            indjac, = dc.nonzero()
            valjac = dc[indjac]
            nnzjac = indjac.size

            return indjac,valjac,nnzjac,flag

        #   ******************************************************************
        #   ******************************************************************

        def evalhc(x,ind):
            pass
#            """This subroutine might compute the Hessian matrix of the ind-th \
#        constraint.
#
#            For achieving this objective YOU MAY MODIFY it according to your
#            problem. To modify this subroutine IS NOT MANDATORY. See below
#            where your modifications must be inserted.
#
#            Parameters of the subroutine:
#
#            On Entry:
#
#            x        double precision x(n),
#                     current point,
#
#            ind      integer,
#                     index of the constraint whose Hessian will be computed,
#
#            On Return
#
#            nnzhc    integer,
#                     number of perhaps-non-null elements of the computed
#                     Hessian,
#
#            hclin    integer hclin(nnzhc),
#                     see below,
#
#            hccol    integer hccol(nnzhc),
#                     see below,
#
#            hcval    double precision hcval(nnzhc),
#                     the non-null value of the (hclin(k),hccol(k)) position
#                     of the Hessian matrix of the ind-th constraint must
#                     be saved at hcval(k). Just the lower triangular part of
#                     Hessian matrix must be computed,
#
#            flag     integer,
#                     You must set it to any number different of 0 (zero) if
#                     some error ocurred during the evaluation of the Hessian
#                     matrix of the ind-th constraint. (For example, trying
#                     to compute the square root of a negative number,
#                     dividing by zero or a very small number, etc.) If
#                     everything was o.k. you must set it equal to zero.
#            """
#
#            n = len(x)
#
#            nnzhc = 1
#
#            hclin = zeros(nnzhc, int)
#            hccol = zeros(nnzhc, int)
#            hcval = zeros(nnzhc, float)
#
#            if ind == 1:
#                hclin[0] = 0
#                hccol[0] = 0
#                hcval[0] = 2.0
#
#                flag = 0
#
#            elif ind == 2:
#                nnzhc = 0
#
#                flag = 0
#
#            else:
#                flag = -1
#
#            return hclin,hccol,hcval,nnzhc,flag

        #   ******************************************************************
        #   ******************************************************************

        def evalhlp(x,m,lambda_,p,goth):
            pass
            """This subroutine computes the product of the Hessian of the Lagrangian \
        times a vector.

              This subroutine might compute the product of the Hessian of the
              Lagrangian times vector p (just the Hessian of the objective
              function in the unconstrained or bound-constrained case).

              Parameters of the subroutine:

              On Entry:

              x        double precision x(n),
                       current point,

              m        integer,
                       number of constraints,

              lambda   double precision lambda(m),
                       vector of Lagrange multipliers,

              p        double precision p(n),
                       vector of the matrix-vector product,

              goth     logical,
                       can be used to indicate if the Hessian matrices were
                       computed at the current point. It is set to .false.
                       by the optimization method every time the current
                       point is modified. Sugestion: if its value is .false.
                       then compute the Hessians, save them in a common
                       structure and set goth to .true.. Otherwise, just use
                       the Hessians saved in the common block structure,

              On Return

              hp       double precision hp(n),
                       Hessian-vector product,

              goth     logical,
                       see above,

              flag     integer,
                       You must set it to any number different of 0 (zero) if
                       some error ocurred during the evaluation of the
                       Hessian-vector product. (For example, trying to compute
                       the square root of a negative number, dividing by zero
                       or a very small number, etc.) If everything was o.k. you
                       must set it equal to zero.
            """

#            n = len(x)
#
#            hp = zeros(n)
#
#            flag = -1
#
#            return hp,goth,flag

        #   ******************************************************************
        #   ******************************************************************

        def evalfc(*args, **kwargs):
            pass

        def evalgjac(*args, **kwargs):
            pass

        def evalhl(*args, **kwargs):
            pass

        def endp(x,l,u,m,lambda_,equatn,linear):
            """This subroutine can be used to do some extra job.

            This subroutine can be used to do some extra job after the solver
            has found the solution, like some extra statistics, or to save the
            solution in some special format or to draw some graphical
            representation of the solution. If the information given by the
            solver is enough for you then leave the body of this subroutine
            empty.

            Parameters of the subroutine:

            The parameters of this subroutine are the same parameters of
            subroutine inip. But in this subroutine there are not output
            parameter. All the parameters are input parameters.
            """
            p.xk = x.copy()
            #p.fk = p.f(x)
            #p.xf = x.copy()
            #p.ff = p.fk
            #p.iterfcn()

        ###########################################################################
        # solver body

        param = {'epsfeas': p.contol,'epsopt' : p.gtol,'iprint': 0, 'ncomp':5,'maxtotit' : p.maxIter, 'maxtotfc': p.maxFunEvals}
        pywrapper.solver(evalf,evalg,evalh,evalc,evaljac,evalhc,evalfc,evalgjac,evalhl, evalhlp,inip,endp,param)

        if p.istop == 0:
            p.istop = SMALL_DF
            p.msg = '|| gradient F(X[k]) || < gtol'
        #p.iterfcn()