This file is indexed.

/usr/share/pyshared/openopt/solvers/scipy_optim/scipy_fminbound_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
from scipy.optimize import fminbound
from openopt.kernel.baseSolver import baseSolver

class scipy_fminbound(baseSolver):
    __name__ = 'scipy_fminbound'
    __optionalDataThatCanBeHandled__ = ['lb', 'ub']
    __license__ = "BSD"
    __authors__ = "Travis E. Oliphant"
    __alg__ = "Brent's method (golden section + parabolic fit)"
    __info__ = '1-dimensional minimizer for finite box-bound problems'
    __isIterPointAlwaysFeasible__ = lambda self, p: True
    def __init__(self):pass
    def __solver__(self, p):
        if p.n != 1: p.err('the solver ' + self.__name__ +' can handle singe-variable problems only')
        if not p.__isFiniteBoxBounded__(): p.err('the solver ' + self.__name__ +' requires finite lower and upper bounds')
        xf, ff, ierr, numfunc= fminbound(p.f, p.lb, p.ub, disp = 0, xtol = 0.999*p.xtol, maxfun = p.maxFunEvals, full_output = 1)

        p.xk = p.xf = xf
        p.fk = p.ff = ff
        if ierr==0: p.istop = 1000
        p.iterfcn()