This file is indexed.

/usr/share/octave/site/m/sundialsTB/idas/idm/idm_monitorB.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
function [new_mondata] = idm_monitorB(call, idxB, t, y, yQ, fct, mondata)

%
% Wrapper around the actual user-provided Matlab function
%

N = length(y);

idxB = idxB+1;
if isempty(mondata)
  feval(fct, call, idxB, t, y, yQ);
  new_mondata = [];
else
  new_mondata = feval(fct, call, idxB, t, y, yQ, mondata);
end