/usr/share/axiom-20170501/src/algebra/FPATMAB.spad is in axiom-source 20170501-3.
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 | )abbrev category FPATMAB FullyPatternMatchable
++ Author: Manuel Bronstein
++ Date Created: 28 Nov 1989
++ Date Last Updated: 29 Nov 1989
++ Description:
++ A set S is PatternMatchable over R if S can lift the
++ pattern-matching functions of S over the integers and float
++ to itself (necessary for matching in towers).
FullyPatternMatchable(R) : Category == SIG where
R : Type
SIG ==> Type with
if R has PatternMatchable Integer then PatternMatchable Integer
if R has PatternMatchable Float then PatternMatchable Float
|