This file is indexed.

/usr/share/gap/pkg/AtlasRep/gap/obsolete.gi is in gap-atlasrep 1.5.1-1.

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
#############################################################################
##
#W  obsolete.gi          GAP 4 package AtlasRep                 Thomas Breuer
##
#Y  Copyright (C)  2011,  Lehrstuhl D fuer Mathematik,  RWTH Aachen,  Germany
##
##  This file contains implementations of global variables
##  that had been documented in earlier versions of the AtlasRep package.
##


#############################################################################
##
#F  AtlasOfGroupRepresentationsTestClassScripts( ... )
#F  AtlasOfGroupRepresentationsTestCompatibleMaxes( ... )
#F  AtlasOfGroupRepresentationsTestFileHeaders( ... )
#F  AtlasOfGroupRepresentationsTestFiles( ... )
#F  AtlasOfGroupRepresentationsTestGroupOrders( ... )
#F  AtlasOfGroupRepresentationsTestStdCompatibility( ... )
#F  AtlasOfGroupRepresentationsTestSubgroupOrders( ... )
#F  AtlasOfGroupRepresentationsTestWords( ... )
##
##  These functions are deprecated since version 1.5 of the package.
##
if not IsBound( AGR.Test ) then
  ReadPackage( "atlasrep", "gap/test.g" );
fi;

InstallGlobalFunction( AtlasOfGroupRepresentationsTestClassScripts,
    AGR.Test.ClassScripts );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestCompatibleMaxes,
    AGR.Test.CompatibleMaxes );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestFileHeaders,
    AGR.Test.FileHeaders );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestFiles,
    AGR.Test.Files );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestGroupOrders,
    AGR.Test.GroupOrders );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestStdCompatibility,
    AGR.Test.StdCompatibility );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestSubgroupOrders,
    AGR.Test.MaxesOrders );
InstallGlobalFunction( AtlasOfGroupRepresentationsTestWords,
    AGR.Test.Words );


#############################################################################
##
#E