This file is indexed.

/usr/lib/ruby/vendor_ruby/ool.rb is in ruby-gsl 2.1.0.3+dfsg1-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
20
21
module OOL
  module Conmin
    class Pgrad_parameters < Array
      attr_accessor :fmin, :tol, :alpha, :sigma1, :sigma2
    end
    class Spg_parameters < Array
      attr_accessor :fmin, :tol, :M, :alphamin, :alphamax, :gamma
      attr_accessor :sigma1, :sigma2
    end
    class Gencan_parameters < Array
      attr_accessor :epsgpen, :epsgpsn, :fmin, :udelta0
      attr_accessor :ucgmia, :ucgmib
      attr_accessor :cg_scre, :cg_gpnf, :cg_epsi, :cg_epsf
      attr_accessor :cg_epsnqmp, :cg_maxitnqmp, :nearlyq
      attr_accessor :nint, :next, :mininterp, :maxextrap
      attr_accessor :trtype, :eta, :deltamin, :lspgmi, :lspgma
      attr_accessor :theta, :gamma, :beta, :sigma1, :sigma2
      attr_accessor :epsrel, :epsabs, :infrel, :infabs
    end    
  end
end