This file is indexed.

/usr/share/pyshared/openopt/solvers/nlopt/sbplx_oo.py is in python-openopt 0.34+svn1146-1build1.

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
from NLOPT_AUX import NLOPT_AUX
from NLOPT_BASE import NLOPT_BASE
import nlopt

class sbplx(NLOPT_BASE):
    __name__ = 'sbplx'
    __alg__ = 'a variant of Nelder-Mead that uses Nelder-Mead on a sequence of subspaces'
    __authors__ = 'Steven G. Johnson'
    __optionalDataThatCanBeHandled__ = ['lb', 'ub']
    __isIterPointAlwaysFeasible__ = lambda self, p: True
    
    funcForIterFcnConnection = 'f'
    
    def __init__(self): pass
    def __solver__(self, p):
        #NLOPT_AUX(p, nlopt.LN_BOBYQA)
        #NLOPT_AUX(p, nlopt.LN_COBYLA)
        NLOPT_AUX(p, nlopt.LN_SBPLX)
        #NLOPT_AUX(p, nlopt.LD_MMA)