This file is indexed.

/usr/share/octave/packages/interval-2.1.0/@infsupdec/decorationpart.m is in octave-interval 2.1.0-2.

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
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
## Copyright 2014-2016 Oliver Heimlich
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, see <http://www.gnu.org/licenses/>.

## -*- texinfo -*-
## @documentencoding UTF-8
## @defmethod {@@infsupdec} decorationpart (@var{X})
## @defmethodx {@@infsupdec} decorationpart (@var{X}, @var{TYPE})
## 
## Return the decoration of the decorated interval @var{X}.
##
## The returned value depends on the requested @var{TYPE}.
## @table @asis
## @item @option{char} (default)
## The decoration is a cell array of character strings and its size equals the
## size of its interval part.  Possible values: @option{ill}, @option{trv},
## @option{def}, @option{dac}, @option{com}.
## @item @option{uint8}
## The decoration is a matrix of uint8 numbers and its size equals the size of
## its interval part.  Possible values: @option{0}, @option{4}, @option{8}, 
## @option{12}, @option{16} as defined by IEEE Std 1788-2015, 14.4 Interchange
## representations and encodings.
## @end table
##
## @example
## @group
## x = infsupdec ("[0, 1] [1, inf] [-1, 1]_def [empty]");
## decorationpart (x)
##   @result{} ans =
##     @{
##       [1,1] = com
##       [1,2] = dac
##       [1,3] = def
##       [1,4] = trv
##     @}
## decorationpart (x, "uint8")
##   @result{} ans =
##
##       16  12   8   4
##
## @end group
## @end example
## @seealso{@@infsupdec/intervalpart}
## @end defmethod

## Author: Oliver Heimlich
## Keywords: interval
## Created: 2014-10-12

function dec = decorationpart (x, type)

if (nargin > 2)
    print_usage ();
    return
endif

if (nargin < 2)
    type = "char";
endif

switch (type)
    case "char"
        # see below
    case "uint8"
        dec = x.dec;
        return
    otherwise
        error ("decorationpart: illegal value for parameter TYPE")
endswitch

persistent dec_translation = {...
    # 0 = ill
    "ill", [], [], [], ...
    # 4 = trv
    "trv", [], [], [], ...
    # 8 = def
    "def", [], [], [], ...
    # 12 = dac
    "dac", [], [], [], ...
    # 16 = com
    "com"};

dec = cell (size (x.dec));
dec(:) = dec_translation(x.dec(:) + 1);

endfunction

%!assert (decorationpart (infsupdec (3, 4)), {"com"});
%!assert (decorationpart (infsupdec (3, inf)), {"dac"});
%!assert (decorationpart (infsupdec ()), {"trv"});