/usr/share/gap/pkg/AtlasRep/read.g 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 | #############################################################################
##
#W read.g GAP 4 package AtlasRep Thomas Breuer
##
#Y Copyright (C) 2001, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
##
# Read the implementation part.
ReadPackage( "atlasrep", "gap/bbox.gi" );
ReadPackage( "atlasrep", "gap/access.gi" );
ReadPackage( "atlasrep", "gap/types.gi" );
ReadPackage( "atlasrep", "gap/interfac.gi" );
ReadPackage( "atlasrep", "gap/mindeg.gi" );
ReadPackage( "atlasrep", "gap/utils.gi" );
# Read Browse applications only if the Browse package will be loaded.
if IsPackageMarkedForLoading( "Browse", "1.3" ) then
ReadPackage( "atlasrep", "gap/brmindeg.g" );
if IsPackageMarkedForLoading( "ctbllib", "" ) then
ReadPackage( "atlasrep", "gap/brspor.g" );
fi;
fi;
# Read obsolete variables iff this happens also in the GAP library.
if UserPreference( "gap", "ReadObsolete" ) <> false then
ReadPackage( "atlasrep", "gap/obsolete.gi" );
fi;
#############################################################################
##
#E
|