This file is indexed.

/usr/lib/x86_64-linux-gnu/scilab-getfem++/macros/init_pde.sci is in scilab-getfem++ 4.2.1~beta1~svn4635~dfsg-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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
function pde = init_pde()
pde = mlist(['pde', ...
             'verbosity', ... // integer
             'mim', ...
             'type', ... 
             'lambda', ...
             'mu', ...
             'viscos', ...
             'K', ...
             'H', ...
             'R', ...
             'Q', ...
             'F', ...
             'G', ...
             'B', ...
             'RK', ...
             'asm', ... 
             'solver', ... 
             'mf_u', ...
             'mf_d', ...
             'mf_p', ...
             'PR', ...
             'E', ...
             'pdetool', ... // pde('pdetool')('b'), pde('pdetool')('e'), 
             'bound', ...
             ]); 

pde('verbosity')     = 0; // integer
pde('type')          = [];     // 'laplacian', 'linear elasticity', 'stockes'
pde('lambda')        = [];
pde('mu')            = [];
pde('viscos')        = [];
pde('K')             = [];
pde('H')             = [];
pde('R')             = [];
pde('Q')             = [];
pde('F')             = [];
pde('G')             = [];
pde('B')             = [];
pde('RK')            = [];
pde('asm')           = mlist(['asm', 'lambda', 'mu', 'viscos', 'K', 'H', 'R', 'Q', 'F', 'G', 'B', 'RK']);
pde('asm')('lambda') = [];
pde('asm')('mu')     = [];
pde('asm')('viscos') = [];
pde('asm')('K')      = [];
pde('asm')('H')      = [];
pde('asm')('R')      = [];
pde('asm')('Q')      = [];
pde('asm')('F')      = [];
pde('asm')('G')      = [];
pde('asm')('B')      = [];
pde('asm')('RK')     = [];
pde('solver')        = 'default' // 'brute_stockes', 'default', set_default_values(pde('solver'),'type','cg','maxiter',1000,'residu',1e-6);
pde('mim')           = [];
pde('mf_u')          = [];
pde('mf_d')          = [];
pde('mf_p')          = [];
pde('PR')            = [];
pde('E')             = [];
pde('pdetool')       = mlist(['pdetool','b','e']);
pde('pdetool')('b')  = [];
pde('pdetool')('e')  = [];
pde('bound')         = []; // 'list' + 'type' + 'R' + 'H'
endfunction