This file is indexed.

/usr/share/octave/site/m/sundialsTB/kinsol/Contents.m is in octave-sundials 2.5.0-3+b1.

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
% KINSOL, nonlinear system solver
%
% Functions
%   KINSetOptions - creates an options structure for KINSOL.
%   KINInit       - allocates and initializes memory for KINSOL.
%   KINSol        - solves the nonlinear problem.
%   KINGetStats   - returns statistics for the KINSOL solver
%   KINFree       - deallocates memory for the KINSOL solver.
%
% User-supplied function types   
%   KINSysFn         -  system function
%   KINDenseJacFn    -  dense Jacobian function
%   KINJacTimesVecFn -  Jacobian times vector function
%   KINPrecSetupFn   -  preconditioner setup function
%   KINPrecSolveFn   -  preconditioner solve function
%   KINGlocalFn      -  RHS approximation function (BBDPre)
%   KINGcomFn        -  communication function (BBDPre)
%
% Serial examples
%   mkinDiagon_kry - simple serial diagonal example
%   mkinTest_dns   - simple 2 dimensional example
%   mkinRoboKin    - robot kinematics problem
%
% Parallel examples
%   mkinDiagon_kry_p - simple parallel diagonal example
% Use the mpirun function to run any of the parallel examples
%
% See also nvector, putils