View | Details | Raw Unified | Return to bug 199910
Collapse All | Expand All

(-)math/reduce/Makefile (-14 / +51 lines)
Lines 8-57 Link Here
8
DISTNAME=	${PORTNAME}-src-2014-11-30
8
DISTNAME=	${PORTNAME}-src-2014-11-30
9
9
10
MAINTAINER=	pfg@FreeBSD.org
10
MAINTAINER=	pfg@FreeBSD.org
11
COMMENT=	Portable general-purpose computer algebra system (CSL version)
11
COMMENT=	Portable general-purpose computer algebra system
12
12
13
LICENSE=	BSD2CLAUSE
13
LICENSE=	BSD2CLAUSE
14
14
15
RUN_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
15
RUN_DEPENDS=	gnuplot:${PORTSDIR}/math/gnuplot
16
LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
17
		libpng.so:${PORTSDIR}/graphics/png \
18
		libtiff.so:${PORTSDIR}/graphics/tiff
19
16
20
USES=		autoreconf:build gmake tar:bzip2
17
USES=		autoreconf:build gmake tar:bzip2
21
USE_XORG=	xext x11 xft
22
18
23
WRKSRC=		${WRKDIR}/${DISTNAME}
19
WRKSRC=		${WRKDIR}/${DISTNAME}
24
20
25
# Avoid GNU_CONFIGURE because it breaks staging
21
# Avoid GNU_CONFIGURE as it breaks staging
26
HAS_CONFIGURE=	yes
22
HAS_CONFIGURE=	yes
27
CONFIGURE_ARGS+=	--with-csl
28
ALL_TARGET=
23
ALL_TARGET=
29
24
30
MAKE_JOBS_UNSAFE=	yes
25
MAKE_JOBS_UNSAFE=	yes
31
26
27
OPTIONS_SINGLE=		SGLSP
28
OPTIONS_SINGLE_SGLSP=	CSL PSL
29
CSL_DESC=	Codemist Standard Lisp - redcsl (portable, X11)
30
PSL_DESC=	Portable Standard Lisp - redpsl (fast, amd64 only)
31
OPTIONS_DEFAULT=	CSL
32
33
CSL_CONFIGURE_WITH=	csl
34
PSL_CONFIGURE_WITH=	psl
35
CSL_USE=	xorg=x11,xext,xft
36
OPTIONS_SUB=	yes
37
32
.include <bsd.port.options.mk>
38
.include <bsd.port.options.mk>
33
39
40
.if ${PORT_OPTIONS:MCSL}
41
LIB_DEPENDS+=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
42
		libpng.so:${PORTSDIR}/graphics/png \
43
		libtiff.so:${PORTSDIR}/graphics/tiff
44
CPPFLAGS+=	`freetype-config --cflags`
45
LDFLAGS+=	`freetype-config --libs`
46
.else
47
ONLY_FOR_ARCHS= amd64
48
.endif
49
34
.if ${ARCH} == "amd64"
50
.if ${ARCH} == "amd64"
35
TARGET_SDIR=	x86_64-unknown-${OPSYS:tl}${OSREL}
51
TARGET_SDIR=	x86_64-unknown-${OPSYS:tl}${OSREL}
36
.else
52
.else
37
TARGET_SDIR=	${ARCH}-unknown-${OPSYS:tl}${OSREL}
53
TARGET_SDIR=	${ARCH}-unknown-${OPSYS:tl}${OSREL}
38
.endif
54
.endif
39
REDUCECSL=	${WRKSRC}/cslbuild/${TARGET_SDIR}/csl
40
55
41
CPPFLAGS+=	`freetype-config --cflags`
56
.if ${PORT_OPTIONS:MCSL}
42
LDFLAGS+=	`freetype-config --libs`
57
REDUCE_BINS=	${WRKSRC}/cslbuild/${TARGET_SDIR}
58
.else
59
REDUCE_BINS=	${WRKSRC}/pslbuild/${TARGET_SDIR}
60
.endif
43
61
44
do-install:
62
do-install:
45
	${MKDIR} ${STAGEDIR}${DATADIR}
63
	${MKDIR} ${STAGEDIR}${DATADIR}
46
	${INSTALL_PROGRAM} ${REDUCECSL}/reduce ${STAGEDIR}${DATADIR}
64
.if ${PORT_OPTIONS:MCSL}
47
	${INSTALL_DATA} ${REDUCECSL}/reduce.img ${STAGEDIR}${DATADIR}
65
	${INSTALL_DATA} ${REDUCE_BINS}/csl/reduce.img ${STAGEDIR}${DATADIR}
66
	${INSTALL_PROGRAM} ${REDUCE_BINS}/csl/reduce ${STAGEDIR}${DATADIR}
48
	${INSTALL_SCRIPT} ${FILESDIR}/runcsl.sh ${STAGEDIR}${PREFIX}/bin/redcsl
67
	${INSTALL_SCRIPT} ${FILESDIR}/runcsl.sh ${STAGEDIR}${PREFIX}/bin/redcsl
49
	${INSTALL_MAN} ${FILESDIR}/redcsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/
68
	${INSTALL_MAN} ${FILESDIR}/redcsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/
50
	${MKDIR} ${STAGEDIR}${DATADIR}/reduce.doc
69
	${MKDIR} ${STAGEDIR}${DATADIR}/reduce.doc
51
	(cd ${REDUCECSL}/reduce.doc && ${COPYTREE_SHARE} . \
70
	(cd ${REDUCE_BINS}/csl/reduce.doc && ${COPYTREE_SHARE} . \
52
	    ${STAGEDIR}${DATADIR}/reduce.doc)
71
	    ${STAGEDIR}${DATADIR}/reduce.doc)
53
	${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR}
72
	${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR}
54
	(cd ${REDUCECSL}/reduce.fonts && ${COPYTREE_SHARE} . \
73
	(cd ${REDUCE_BINS}/csl/reduce.fonts && ${COPYTREE_SHARE} . \
55
	    ${STAGEDIR}${DATADIR}/reduce.fonts)
74
	    ${STAGEDIR}${DATADIR}/reduce.fonts)
75
.else
76
	${INSTALL_SCRIPT} ${FILESDIR}/runpsl.sh ${STAGEDIR}${PREFIX}/bin/redpsl
77
	${INSTALL_MAN} ${FILESDIR}/redpsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/
78
	${MKDIR} ${STAGEDIR}${DATADIR}/psl
79
	${INSTALL_PROGRAM} ${REDUCE_BINS}/psl/bpsl ${STAGEDIR}${DATADIR}/psl/
80
	(cd ${REDUCE_BINS}/psl && ${COPYTREE_SHARE} . \
81
	    ${STAGEDIR}${DATADIR}/psl "! -name bpsl")
82
	${MKDIR} ${STAGEDIR}${PREFIX}/red
83
	(cd ${REDUCE_BINS}/red && ${COPYTREE_SHARE} . \
84
	    ${STAGEDIR}${DATADIR}/red)
85
.endif
86
.if ${PORT_OPTIONS:MDOCS}
87
	${MKDIR} ${STAGEDIR}${DOCSDIR}
88
	${INSTALL_DATA} ${WRKSRC}/doc/manual/manual.pdf\
89
	    ${STAGEDIR}${DOCSDIR}
90
	${INSTALL_DATA} ${WRKSRC}/doc/primers/*.pdf \
91
	    ${STAGEDIR}${DOCSDIR}
92
.endif
56
93
57
.include <bsd.port.mk>
94
.include <bsd.port.mk>
(-)math/reduce/files/redpsl.1 (+18 lines)
Line 0 Link Here
1
.TH REDPSL 1 "2010 October 10" "redpsl"
2
.
3
.
4
.SH NAME
5
redpsl \- Run REDUCE under PSL
6
.
7
.
8
.SH Synopsis
9
.B redpsl
10
.
11
.
12
.SH DESCRIPTION
13
.I redpsl
14
runs REDUCE based on the 
15
.BR PSL
16
Lisp system.
17
.
18
.
(-)math/reduce/files/runpsl.sh (+13 lines)
Line 0 Link Here
1
#! /bin/sh
2
3
case `uname -m` in
4
amd64)
5
      STORE=2000
6
      ;;
7
esac
8
9
bin="/usr/local/share/reduce/psl/bpsl"
10
img="/usr/local/share/reduce/red/reduce.img"
11
12
exec $bin -td $STORE -f $img $*
13
(-)math/reduce/pkg-plist (-106 / +1205 lines)
Lines 1-106 Link Here
1
bin/redcsl
1
%%CSL%%bin/redcsl
2
man/man1/redcsl.1.gz
2
%%CSL%%man/man1/redcsl.1.gz
3
%%DATADIR%%/reduce
3
%%CSL%%%%DATADIR%%/reduce
4
%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt
4
%%CSL%%%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt
5
%%DATADIR%%/reduce.doc/BSD-LICENSE.txt
5
%%CSL%%%%DATADIR%%/reduce.doc/BSD-LICENSE.txt
6
%%DATADIR%%/reduce.doc/LGPL-2.1.txt
6
%%CSL%%%%DATADIR%%/reduce.doc/LGPL-2.1.txt
7
%%DATADIR%%/reduce.doc/abstract.tex
7
%%CSL%%%%DATADIR%%/reduce.doc/abstract.tex
8
%%DATADIR%%/reduce.doc/acknowl.tex
8
%%CSL%%%%DATADIR%%/reduce.doc/acknowl.tex
9
%%DATADIR%%/reduce.doc/appenda.tex
9
%%CSL%%%%DATADIR%%/reduce.doc/appenda.tex
10
%%DATADIR%%/reduce.doc/aprop.tex
10
%%CSL%%%%DATADIR%%/reduce.doc/aprop.tex
11
%%DATADIR%%/reduce.doc/cfrac.tex
11
%%CSL%%%%DATADIR%%/reduce.doc/cfrac.tex
12
%%DATADIR%%/reduce.doc/command.tex
12
%%CSL%%%%DATADIR%%/reduce.doc/command.tex
13
%%DATADIR%%/reduce.doc/convert.tex
13
%%CSL%%%%DATADIR%%/reduce.doc/convert.tex
14
%%DATADIR%%/reduce.doc/exprn.tex
14
%%CSL%%%%DATADIR%%/reduce.doc/exprn.tex
15
%%DATADIR%%/reduce.doc/header.tex
15
%%CSL%%%%DATADIR%%/reduce.doc/header.tex
16
%%DATADIR%%/reduce.doc/hephys.tex
16
%%CSL%%%%DATADIR%%/reduce.doc/hephys.tex
17
%%DATADIR%%/reduce.doc/heugcd.tex
17
%%CSL%%%%DATADIR%%/reduce.doc/heugcd.tex
18
%%DATADIR%%/reduce.doc/index.html
18
%%CSL%%%%DATADIR%%/reduce.doc/index.html
19
%%DATADIR%%/reduce.doc/inter.tex
19
%%CSL%%%%DATADIR%%/reduce.doc/inter.tex
20
%%DATADIR%%/reduce.doc/intro.tex
20
%%CSL%%%%DATADIR%%/reduce.doc/intro.tex
21
%%DATADIR%%/reduce.doc/io.tex
21
%%CSL%%%%DATADIR%%/reduce.doc/io.tex
22
%%DATADIR%%/reduce.doc/list.tex
22
%%CSL%%%%DATADIR%%/reduce.doc/list.tex
23
%%DATADIR%%/reduce.doc/macros.tex
23
%%CSL%%%%DATADIR%%/reduce.doc/macros.tex
24
%%DATADIR%%/reduce.doc/maintain.tex
24
%%CSL%%%%DATADIR%%/reduce.doc/maintain.tex
25
%%DATADIR%%/reduce.doc/manual.tex
25
%%CSL%%%%DATADIR%%/reduce.doc/manual.tex
26
%%DATADIR%%/reduce.doc/map.tex
26
%%CSL%%%%DATADIR%%/reduce.doc/map.tex
27
%%DATADIR%%/reduce.doc/matrix.tex
27
%%CSL%%%%DATADIR%%/reduce.doc/matrix.tex
28
%%DATADIR%%/reduce.doc/oper.tex
28
%%CSL%%%%DATADIR%%/reduce.doc/oper.tex
29
%%DATADIR%%/reduce.doc/oper2.tex
29
%%CSL%%%%DATADIR%%/reduce.doc/oper2.tex
30
%%DATADIR%%/reduce.doc/polyrat.tex
30
%%CSL%%%%DATADIR%%/reduce.doc/polyrat.tex
31
%%DATADIR%%/reduce.doc/proc.tex
31
%%CSL%%%%DATADIR%%/reduce.doc/proc.tex
32
%%DATADIR%%/reduce.doc/progstr.tex
32
%%CSL%%%%DATADIR%%/reduce.doc/progstr.tex
33
%%DATADIR%%/reduce.doc/r38_0001.html
33
%%CSL%%%%DATADIR%%/reduce.doc/r38_0001.html
34
%%DATADIR%%/reduce.doc/r38_0050.html
34
%%CSL%%%%DATADIR%%/reduce.doc/r38_0050.html
35
%%DATADIR%%/reduce.doc/r38_0100.html
35
%%CSL%%%%DATADIR%%/reduce.doc/r38_0100.html
36
%%DATADIR%%/reduce.doc/r38_0150.html
36
%%CSL%%%%DATADIR%%/reduce.doc/r38_0150.html
37
%%DATADIR%%/reduce.doc/r38_0200.html
37
%%CSL%%%%DATADIR%%/reduce.doc/r38_0200.html
38
%%DATADIR%%/reduce.doc/r38_0250.html
38
%%CSL%%%%DATADIR%%/reduce.doc/r38_0250.html
39
%%DATADIR%%/reduce.doc/r38_0300.html
39
%%CSL%%%%DATADIR%%/reduce.doc/r38_0300.html
40
%%DATADIR%%/reduce.doc/r38_0350.html
40
%%CSL%%%%DATADIR%%/reduce.doc/r38_0350.html
41
%%DATADIR%%/reduce.doc/r38_0400.html
41
%%CSL%%%%DATADIR%%/reduce.doc/r38_0400.html
42
%%DATADIR%%/reduce.doc/r38_0450.html
42
%%CSL%%%%DATADIR%%/reduce.doc/r38_0450.html
43
%%DATADIR%%/reduce.doc/r38_0500.html
43
%%CSL%%%%DATADIR%%/reduce.doc/r38_0500.html
44
%%DATADIR%%/reduce.doc/r38_0550.html
44
%%CSL%%%%DATADIR%%/reduce.doc/r38_0550.html
45
%%DATADIR%%/reduce.doc/r38_0600.html
45
%%CSL%%%%DATADIR%%/reduce.doc/r38_0600.html
46
%%DATADIR%%/reduce.doc/r38_0650.html
46
%%CSL%%%%DATADIR%%/reduce.doc/r38_0650.html
47
%%DATADIR%%/reduce.doc/r38_idx.html
47
%%CSL%%%%DATADIR%%/reduce.doc/r38_idx.html
48
%%DATADIR%%/reduce.doc/redlogo.gif
48
%%CSL%%%%DATADIR%%/reduce.doc/redlogo.gif
49
%%DATADIR%%/reduce.doc/rememb.tex
49
%%CSL%%%%DATADIR%%/reduce.doc/rememb.tex
50
%%DATADIR%%/reduce.doc/rest.tex
50
%%CSL%%%%DATADIR%%/reduce.doc/rest.tex
51
%%DATADIR%%/reduce.doc/rlisp88.tex
51
%%CSL%%%%DATADIR%%/reduce.doc/rlisp88.tex
52
%%DATADIR%%/reduce.doc/rlispref.tex
52
%%CSL%%%%DATADIR%%/reduce.doc/rlispref.tex
53
%%DATADIR%%/reduce.doc/solve.tex
53
%%CSL%%%%DATADIR%%/reduce.doc/solve.tex
54
%%DATADIR%%/reduce.doc/statemnt.tex
54
%%CSL%%%%DATADIR%%/reduce.doc/statemnt.tex
55
%%DATADIR%%/reduce.doc/structr.tex
55
%%CSL%%%%DATADIR%%/reduce.doc/structr.tex
56
%%DATADIR%%/reduce.doc/subst.tex
56
%%CSL%%%%DATADIR%%/reduce.doc/subst.tex
57
%%DATADIR%%/reduce.doc/symbolic.tex
57
%%CSL%%%%DATADIR%%/reduce.doc/symbolic.tex
58
%%DATADIR%%/reduce.doc/title.tex
58
%%CSL%%%%DATADIR%%/reduce.doc/title.tex
59
%%DATADIR%%/reduce.doc/util.tex
59
%%CSL%%%%DATADIR%%/reduce.doc/util.tex
60
%%DATADIR%%/reduce.fonts/README
60
%%CSL%%%%DATADIR%%/reduce.fonts/README
61
%%DATADIR%%/reduce.fonts/README.BaKoMa
61
%%CSL%%%%DATADIR%%/reduce.fonts/README.BaKoMa
62
%%DATADIR%%/reduce.fonts/README.cmps-fonts
62
%%CSL%%%%DATADIR%%/reduce.fonts/README.cmps-fonts
63
%%DATADIR%%/reduce.fonts/cmex10.pfa
63
%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.pfa
64
%%DATADIR%%/reduce.fonts/cmex10.pfb
64
%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.pfb
65
%%DATADIR%%/reduce.fonts/cmex10.ttf
65
%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.ttf
66
%%DATADIR%%/reduce.fonts/cmex7.ttf
66
%%CSL%%%%DATADIR%%/reduce.fonts/cmex7.ttf
67
%%DATADIR%%/reduce.fonts/cmex8.ttf
67
%%CSL%%%%DATADIR%%/reduce.fonts/cmex8.ttf
68
%%DATADIR%%/reduce.fonts/cmex9.ttf
68
%%CSL%%%%DATADIR%%/reduce.fonts/cmex9.ttf
69
%%DATADIR%%/reduce.fonts/cmmi10.pfa
69
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.pfa
70
%%DATADIR%%/reduce.fonts/cmmi10.pfb
70
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.pfb
71
%%DATADIR%%/reduce.fonts/cmmi10.ttf
71
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.ttf
72
%%DATADIR%%/reduce.fonts/cmmi12.ttf
72
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi12.ttf
73
%%DATADIR%%/reduce.fonts/cmmi5.ttf
73
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi5.ttf
74
%%DATADIR%%/reduce.fonts/cmmi6.ttf
74
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi6.ttf
75
%%DATADIR%%/reduce.fonts/cmmi7.ttf
75
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi7.ttf
76
%%DATADIR%%/reduce.fonts/cmmi8.ttf
76
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi8.ttf
77
%%DATADIR%%/reduce.fonts/cmmi9.ttf
77
%%CSL%%%%DATADIR%%/reduce.fonts/cmmi9.ttf
78
%%DATADIR%%/reduce.fonts/cmr10.pfa
78
%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.pfa
79
%%DATADIR%%/reduce.fonts/cmr10.pfb
79
%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.pfb
80
%%DATADIR%%/reduce.fonts/cmr10.ttf
80
%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.ttf
81
%%DATADIR%%/reduce.fonts/cmr12.ttf
81
%%CSL%%%%DATADIR%%/reduce.fonts/cmr12.ttf
82
%%DATADIR%%/reduce.fonts/cmr17.ttf
82
%%CSL%%%%DATADIR%%/reduce.fonts/cmr17.ttf
83
%%DATADIR%%/reduce.fonts/cmr5.ttf
83
%%CSL%%%%DATADIR%%/reduce.fonts/cmr5.ttf
84
%%DATADIR%%/reduce.fonts/cmr6.ttf
84
%%CSL%%%%DATADIR%%/reduce.fonts/cmr6.ttf
85
%%DATADIR%%/reduce.fonts/cmr7.ttf
85
%%CSL%%%%DATADIR%%/reduce.fonts/cmr7.ttf
86
%%DATADIR%%/reduce.fonts/cmr8.ttf
86
%%CSL%%%%DATADIR%%/reduce.fonts/cmr8.ttf
87
%%DATADIR%%/reduce.fonts/cmr9.ttf
87
%%CSL%%%%DATADIR%%/reduce.fonts/cmr9.ttf
88
%%DATADIR%%/reduce.fonts/cmsy10.pfa
88
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.pfa
89
%%DATADIR%%/reduce.fonts/cmsy10.pfb
89
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.pfb
90
%%DATADIR%%/reduce.fonts/cmsy10.ttf
90
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.ttf
91
%%DATADIR%%/reduce.fonts/cmsy5.ttf
91
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy5.ttf
92
%%DATADIR%%/reduce.fonts/cmsy6.ttf
92
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy6.ttf
93
%%DATADIR%%/reduce.fonts/cmsy7.ttf
93
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy7.ttf
94
%%DATADIR%%/reduce.fonts/cmsy8.ttf
94
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy8.ttf
95
%%DATADIR%%/reduce.fonts/cmsy9.ttf
95
%%CSL%%%%DATADIR%%/reduce.fonts/cmsy9.ttf
96
%%DATADIR%%/reduce.fonts/fonts.dir
96
%%CSL%%%%DATADIR%%/reduce.fonts/fonts.dir
97
%%DATADIR%%/reduce.fonts/fonts.scale
97
%%CSL%%%%DATADIR%%/reduce.fonts/fonts.scale
98
%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm
98
%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm
99
%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm
99
%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm
100
%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm
100
%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm
101
%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm
101
%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm
102
%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz
102
%%CSL%%%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz
103
%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz
103
%%CSL%%%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz
104
%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz
104
%%CSL%%%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz
105
%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz
105
%%CSL%%%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz
106
%%DATADIR%%/reduce.img
106
%%CSL%%%%DATADIR%%/reduce.img
107
%%PSL%%bin/redpsl
108
%%PSL%%man/man1/redpsl.1.gz
109
%%PSL%%%%DATADIR%%/psl/386-ext.b
110
%%PSL%%%%DATADIR%%/psl/64
111
%%PSL%%%%DATADIR%%/psl/AMD64-cmac.b
112
%%PSL%%%%DATADIR%%/psl/AMD64-comp.b
113
%%PSL%%%%DATADIR%%/psl/AMD64-lap.b
114
%%PSL%%%%DATADIR%%/psl/AMD64-spec.b
115
%%PSL%%%%DATADIR%%/psl/addr2id.b
116
%%PSL%%%%DATADIR%%/psl/allocators.b
117
%%PSL%%%%DATADIR%%/psl/apply-lap.b
118
%%PSL%%%%DATADIR%%/psl/arithmetic.b
119
%%PSL%%%%DATADIR%%/psl/association.b
120
%%PSL%%%%DATADIR%%/psl/autoload-tr.b
121
%%PSL%%%%DATADIR%%/psl/autoload.b
122
%%PSL%%%%DATADIR%%/psl/backquote.b
123
%%PSL%%%%DATADIR%%/psl/backtrace.b
124
%%PSL%%%%DATADIR%%/psl/base-io.b
125
%%PSL%%%%DATADIR%%/psl/big-faslend.b
126
%%PSL%%%%DATADIR%%/psl/big.b
127
%%PSL%%%%DATADIR%%/psl/bind-macros.b
128
%%PSL%%%%DATADIR%%/psl/binding.b
129
%%PSL%%%%DATADIR%%/psl/bpsl
130
%%PSL%%%%DATADIR%%/psl/break.b
131
%%PSL%%%%DATADIR%%/psl/build.b
132
%%PSL%%%%DATADIR%%/psl/c-template.b
133
%%PSL%%%%DATADIR%%/psl/carcdr.b
134
%%PSL%%%%DATADIR%%/psl/carcdrnil.b
135
%%PSL%%%%DATADIR%%/psl/catch-throw.b
136
%%PSL%%%%DATADIR%%/psl/char-io.b
137
%%PSL%%%%DATADIR%%/psl/char-macro.b
138
%%PSL%%%%DATADIR%%/psl/chars.b
139
%%PSL%%%%DATADIR%%/psl/clcomp.b
140
%%PSL%%%%DATADIR%%/psl/clcomp1.b
141
%%PSL%%%%DATADIR%%/psl/comasm.b
142
%%PSL%%%%DATADIR%%/psl/common.b
143
%%PSL%%%%DATADIR%%/psl/comp-decls.b
144
%%PSL%%%%DATADIR%%/psl/compat.b
145
%%PSL%%%%DATADIR%%/psl/compiler.b
146
%%PSL%%%%DATADIR%%/psl/compsupport.b
147
%%PSL%%%%DATADIR%%/psl/cond-macros.b
148
%%PSL%%%%DATADIR%%/psl/cons-mkvect.b
149
%%PSL%%%%DATADIR%%/psl/constants.b
150
%%PSL%%%%DATADIR%%/psl/cont-error.b
151
%%PSL%%%%DATADIR%%/psl/copiers.b
152
%%PSL%%%%DATADIR%%/psl/copying-gc.b
153
%%PSL%%%%DATADIR%%/psl/datamachine.b
154
%%PSL%%%%DATADIR%%/psl/debug.b
155
%%PSL%%%%DATADIR%%/psl/def-smacro.b
156
%%PSL%%%%DATADIR%%/psl/defconst.b
157
%%PSL%%%%DATADIR%%/psl/defmacro.b
158
%%PSL%%%%DATADIR%%/psl/defmacro1.b
159
%%PSL%%%%DATADIR%%/psl/defmacro2.b
160
%%PSL%%%%DATADIR%%/psl/defobject.b
161
%%PSL%%%%DATADIR%%/psl/disassemble.b
162
%%PSL%%%%DATADIR%%/psl/double.b
163
%%PSL%%%%DATADIR%%/psl/double32.b
164
%%PSL%%%%DATADIR%%/psl/dskin.b
165
%%PSL%%%%DATADIR%%/psl/dumplisp.b
166
%%PSL%%%%DATADIR%%/psl/easy-non-sl.b
167
%%PSL%%%%DATADIR%%/psl/easy-sl.b
168
%%PSL%%%%DATADIR%%/psl/environment.b
169
%%PSL%%%%DATADIR%%/psl/equal.b
170
%%PSL%%%%DATADIR%%/psl/error-eset.b
171
%%PSL%%%%DATADIR%%/psl/error-hand.b
172
%%PSL%%%%DATADIR%%/psl/eval-apply.b
173
%%PSL%%%%DATADIR%%/psl/eval-when.b
174
%%PSL%%%%DATADIR%%/psl/evalhook.b
175
%%PSL%%%%DATADIR%%/psl/explode-com.b
176
%%PSL%%%%DATADIR%%/psl/f-evectors.b
177
%%PSL%%%%DATADIR%%/psl/f-strings.b
178
%%PSL%%%%DATADIR%%/psl/f-vectors.b
179
%%PSL%%%%DATADIR%%/psl/fasl-decls.b
180
%%PSL%%%%DATADIR%%/psl/faslout.b
181
%%PSL%%%%DATADIR%%/psl/fast-chars.b
182
%%PSL%%%%DATADIR%%/psl/fast-int.b
183
%%PSL%%%%DATADIR%%/psl/fast-math.b
184
%%PSL%%%%DATADIR%%/psl/fast-vector.b
185
%%PSL%%%%DATADIR%%/psl/fc-indirect.b
186
%%PSL%%%%DATADIR%%/psl/fcomp.b
187
%%PSL%%%%DATADIR%%/psl/find.b
188
%%PSL%%%%DATADIR%%/psl/fixup.b
189
%%PSL%%%%DATADIR%%/psl/fluid-globl.b
190
%%PSL%%%%DATADIR%%/psl/for-macro.b
191
%%PSL%%%%DATADIR%%/psl/funct-prims.b
192
%%PSL%%%%DATADIR%%/psl/get-options.b
193
%%PSL%%%%DATADIR%%/psl/gsort.b
194
%%PSL%%%%DATADIR%%/psl/hash-decls.b
195
%%PSL%%%%DATADIR%%/psl/hcons.b
196
%%PSL%%%%DATADIR%%/psl/helferlein.b
197
%%PSL%%%%DATADIR%%/psl/if-system.b
198
%%PSL%%%%DATADIR%%/psl/if.b
199
%%PSL%%%%DATADIR%%/psl/init-file.b
200
%%PSL%%%%DATADIR%%/psl/inum.b
201
%%PSL%%%%DATADIR%%/psl/io-data.b
202
%%PSL%%%%DATADIR%%/psl/io-decls.b
203
%%PSL%%%%DATADIR%%/psl/io-errors.b
204
%%PSL%%%%DATADIR%%/psl/io-extens.b
205
%%PSL%%%%DATADIR%%/psl/iter-macros.b
206
%%PSL%%%%DATADIR%%/psl/knowntocomp.b
207
%%PSL%%%%DATADIR%%/psl/l2cdatacon.b
208
%%PSL%%%%DATADIR%%/psl/lap-to-asm.b
209
%%PSL%%%%DATADIR%%/psl/lap.b
210
%%PSL%%%%DATADIR%%/psl/lisp-macros.b
211
%%PSL%%%%DATADIR%%/psl/load-psl.b
212
%%PSL%%%%DATADIR%%/psl/load.b
213
%%PSL%%%%DATADIR%%/psl/loop-macros.b
214
%%PSL%%%%DATADIR%%/psl/macroexpand.b
215
%%PSL%%%%DATADIR%%/psl/mathlib.b
216
%%PSL%%%%DATADIR%%/psl/mbarith.b
217
%%PSL%%%%DATADIR%%/psl/merge-sort.b
218
%%PSL%%%%DATADIR%%/psl/misc-macros.b
219
%%PSL%%%%DATADIR%%/psl/mstruct.b
220
%%PSL%%%%DATADIR%%/psl/muls.b
221
%%PSL%%%%DATADIR%%/psl/muls32.b
222
%%PSL%%%%DATADIR%%/psl/nbarith.b
223
%%PSL%%%%DATADIR%%/psl/nbig.b
224
%%PSL%%%%DATADIR%%/psl/nbig0.b
225
%%PSL%%%%DATADIR%%/psl/nbig30.b
226
%%PSL%%%%DATADIR%%/psl/nbig30a.b
227
%%PSL%%%%DATADIR%%/psl/nbig32.b
228
%%PSL%%%%DATADIR%%/psl/nbig32a.b
229
%%PSL%%%%DATADIR%%/psl/nbittab.b
230
%%PSL%%%%DATADIR%%/psl/nstruct.b
231
%%PSL%%%%DATADIR%%/psl/numeric-ops.b
232
%%PSL%%%%DATADIR%%/psl/obj-const.b
233
%%PSL%%%%DATADIR%%/psl/obj-dflavor.b
234
%%PSL%%%%DATADIR%%/psl/obj-dmethod.b
235
%%PSL%%%%DATADIR%%/psl/obj-hash.b
236
%%PSL%%%%DATADIR%%/psl/obj-lib.b
237
%%PSL%%%%DATADIR%%/psl/obj-send.b
238
%%PSL%%%%DATADIR%%/psl/objects.b
239
%%PSL%%%%DATADIR%%/psl/objinstance.b
240
%%PSL%%%%DATADIR%%/psl/oblist.b
241
%%PSL%%%%DATADIR%%/psl/onoff.b
242
%%PSL%%%%DATADIR%%/psl/open-close.b
243
%%PSL%%%%DATADIR%%/psl/other-io.b
244
%%PSL%%%%DATADIR%%/psl/others-sl.b
245
%%PSL%%%%DATADIR%%/psl/p1-decls.b
246
%%PSL%%%%DATADIR%%/psl/pass-1-lap.b
247
%%PSL%%%%DATADIR%%/psl/pass-1.b
248
%%PSL%%%%DATADIR%%/psl/pass-2-3.b
249
%%PSL%%%%DATADIR%%/psl/pipes.b
250
%%PSL%%%%DATADIR%%/psl/pp-file.b
251
%%PSL%%%%DATADIR%%/psl/pp-lisp.b
252
%%PSL%%%%DATADIR%%/psl/pp.b
253
%%PSL%%%%DATADIR%%/psl/printers.b
254
%%PSL%%%%DATADIR%%/psl/printf.b
255
%%PSL%%%%DATADIR%%/psl/prog-friend.b
256
%%PSL%%%%DATADIR%%/psl/prop-list.b
257
%%PSL%%%%DATADIR%%/psl/pslcomp.b
258
%%PSL%%%%DATADIR%%/psl/pslcompat.b
259
%%PSL%%%%DATADIR%%/psl/putd-getd.b
260
%%PSL%%%%DATADIR%%/psl/putprint.b
261
%%PSL%%%%DATADIR%%/psl/pvm.b
262
%%PSL%%%%DATADIR%%/psl/qualified-timing.b
263
%%PSL%%%%DATADIR%%/psl/rds-wrs.b
264
%%PSL%%%%DATADIR%%/psl/read-macros.b
265
%%PSL%%%%DATADIR%%/psl/read-utils.b
266
%%PSL%%%%DATADIR%%/psl/read.b
267
%%PSL%%%%DATADIR%%/psl/read1macros.b
268
%%PSL%%%%DATADIR%%/psl/read2macros.b
269
%%PSL%%%%DATADIR%%/psl/rprint.b
270
%%PSL%%%%DATADIR%%/psl/s-strings.b
271
%%PSL%%%%DATADIR%%/psl/s-vectors.b
272
%%PSL%%%%DATADIR%%/psl/scan-table.b
273
%%PSL%%%%DATADIR%%/psl/sequence.b
274
%%PSL%%%%DATADIR%%/psl/set-macros.b
275
%%PSL%%%%DATADIR%%/psl/set1-macros.b
276
%%PSL%%%%DATADIR%%/psl/set2-macros.b
277
%%PSL%%%%DATADIR%%/psl/sets.b
278
%%PSL%%%%DATADIR%%/psl/shmem.b
279
%%PSL%%%%DATADIR%%/psl/spy.b
280
%%PSL%%%%DATADIR%%/psl/static-gc.b
281
%%PSL%%%%DATADIR%%/psl/step.b
282
%%PSL%%%%DATADIR%%/psl/str-input.b
283
%%PSL%%%%DATADIR%%/psl/str-search.b
284
%%PSL%%%%DATADIR%%/psl/string-gen.b
285
%%PSL%%%%DATADIR%%/psl/strings.b
286
%%PSL%%%%DATADIR%%/psl/symbol-vals.b
287
%%PSL%%%%DATADIR%%/psl/symget.b
288
%%PSL%%%%DATADIR%%/psl/sys-consts.b
289
%%PSL%%%%DATADIR%%/psl/sys-date.b
290
%%PSL%%%%DATADIR%%/psl/sys-dm.b
291
%%PSL%%%%DATADIR%%/psl/sys-extras.b
292
%%PSL%%%%DATADIR%%/psl/sys-faslin.b
293
%%PSL%%%%DATADIR%%/psl/sys-gc.b
294
%%PSL%%%%DATADIR%%/psl/sys-io.b
295
%%PSL%%%%DATADIR%%/psl/sys-macros.b
296
%%PSL%%%%DATADIR%%/psl/syslisp-syn.b
297
%%PSL%%%%DATADIR%%/psl/syslisp.b
298
%%PSL%%%%DATADIR%%/psl/tags.b
299
%%PSL%%%%DATADIR%%/psl/timc.b
300
%%PSL%%%%DATADIR%%/psl/token-decls.b
301
%%PSL%%%%DATADIR%%/psl/token-scan.b
302
%%PSL%%%%DATADIR%%/psl/top-loop.b
303
%%PSL%%%%DATADIR%%/psl/trap.b
304
%%PSL%%%%DATADIR%%/psl/type-conver.b
305
%%PSL%%%%DATADIR%%/psl/type-error.b
306
%%PSL%%%%DATADIR%%/psl/unixAMD64-asm.b
307
%%PSL%%%%DATADIR%%/psl/useful.b
308
%%PSL%%%%DATADIR%%/psl/vector-fix.b
309
%%PSL%%%%DATADIR%%/psl/vectors.b
310
%%PSL%%%%DATADIR%%/psl/vfvect.b
311
%%PSL%%%%DATADIR%%/psl/wdeclare.b
312
%%PSL%%%%DATADIR%%/psl/wfloat.b
313
%%PSL%%%%DATADIR%%/psl/write-float.b
314
%%PSL%%%%DATADIR%%/psl/zbig.b
315
%%PSL%%%%DATADIR%%/red/_definta.lap
316
%%PSL%%%%DATADIR%%/red/_defintb.lap
317
%%PSL%%%%DATADIR%%/red/_definte.lap
318
%%PSL%%%%DATADIR%%/red/_defintf.lap
319
%%PSL%%%%DATADIR%%/red/_definti.lap
320
%%PSL%%%%DATADIR%%/red/_defintk.lap
321
%%PSL%%%%DATADIR%%/red/_susy2.lap
322
%%PSL%%%%DATADIR%%/red/a2dip.b
323
%%PSL%%%%DATADIR%%/red/acfsf.b
324
%%PSL%%%%DATADIR%%/red/acfsfbnf.b
325
%%PSL%%%%DATADIR%%/red/acfsfgs.b
326
%%PSL%%%%DATADIR%%/red/acfsfmisc.b
327
%%PSL%%%%DATADIR%%/red/acfsfqe.b
328
%%PSL%%%%DATADIR%%/red/acfsfsiat.b
329
%%PSL%%%%DATADIR%%/red/acfsfsism.b
330
%%PSL%%%%DATADIR%%/red/afactor.b
331
%%PSL%%%%DATADIR%%/red/alg-form.b
332
%%PSL%%%%DATADIR%%/red/alg.b
333
%%PSL%%%%DATADIR%%/red/algbool.b
334
%%PSL%%%%DATADIR%%/red/algdcl.b
335
%%PSL%%%%DATADIR%%/red/algfn.b
336
%%PSL%%%%DATADIR%%/red/algint.b
337
%%PSL%%%%DATADIR%%/red/allroot.b
338
%%PSL%%%%DATADIR%%/red/alphas.b
339
%%PSL%%%%DATADIR%%/red/antisubs.b
340
%%PSL%%%%DATADIR%%/red/applysym.b
341
%%PSL%%%%DATADIR%%/red/approx.b
342
%%PSL%%%%DATADIR%%/red/arinv.b
343
%%PSL%%%%DATADIR%%/red/arith.b
344
%%PSL%%%%DATADIR%%/red/arnum.b
345
%%PSL%%%%DATADIR%%/red/array.b
346
%%PSL%%%%DATADIR%%/red/assert.b
347
%%PSL%%%%DATADIR%%/red/assertcheckfn.b
348
%%PSL%%%%DATADIR%%/red/assertproc.b
349
%%PSL%%%%DATADIR%%/red/assist.b
350
%%PSL%%%%DATADIR%%/red/atensor.b
351
%%PSL%%%%DATADIR%%/red/auxitens.b
352
%%PSL%%%%DATADIR%%/red/avector.b
353
%%PSL%%%%DATADIR%%/red/backtrck.b
354
%%PSL%%%%DATADIR%%/red/baglist.b
355
%%PSL%%%%DATADIR%%/red/bareiss.b
356
%%PSL%%%%DATADIR%%/red/bas.b
357
%%PSL%%%%DATADIR%%/red/basis.b
358
%%PSL%%%%DATADIR%%/red/bcoeff.b
359
%%PSL%%%%DATADIR%%/red/bcsf.b
360
%%PSL%%%%DATADIR%%/red/bfauxil.b
361
%%PSL%%%%DATADIR%%/red/bfdoer.b
362
%%PSL%%%%DATADIR%%/red/bfdoer2.b
363
%%PSL%%%%DATADIR%%/red/bfelem.b
364
%%PSL%%%%DATADIR%%/red/bibasis.b
365
%%PSL%%%%DATADIR%%/red/bibasis_interface.b
366
%%PSL%%%%DATADIR%%/red/bibasis_involutive.b
367
%%PSL%%%%DATADIR%%/red/bibasis_janet_tree.b
368
%%PSL%%%%DATADIR%%/red/bibasis_monom.b
369
%%PSL%%%%DATADIR%%/red/bibasis_polynom.b
370
%%PSL%%%%DATADIR%%/red/bibasis_qset.b
371
%%PSL%%%%DATADIR%%/red/bibasis_triple.b
372
%%PSL%%%%DATADIR%%/red/bibasis_tset.b
373
%%PSL%%%%DATADIR%%/red/bigmodp.b
374
%%PSL%%%%DATADIR%%/red/block.b
375
%%PSL%%%%DATADIR%%/red/block4.b
376
%%PSL%%%%DATADIR%%/red/boolean.b
377
%%PSL%%%%DATADIR%%/red/bootstrap.img
378
%%PSL%%%%DATADIR%%/red/bounds.b
379
%%PSL%%%%DATADIR%%/red/bquote.b
380
%%PSL%%%%DATADIR%%/red/breduce.b
381
%%PSL%%%%DATADIR%%/red/buchbg.b
382
%%PSL%%%%DATADIR%%/red/cali.b
383
%%PSL%%%%DATADIR%%/red/calimat.b
384
%%PSL%%%%DATADIR%%/red/camal.b
385
%%PSL%%%%DATADIR%%/red/cantens.b
386
%%PSL%%%%DATADIR%%/red/cdiff.b
387
%%PSL%%%%DATADIR%%/red/cdiffx.b
388
%%PSL%%%%DATADIR%%/red/cedit.b
389
%%PSL%%%%DATADIR%%/red/cface.b
390
%%PSL%%%%DATADIR%%/red/cgb.b
391
%%PSL%%%%DATADIR%%/red/changevr.b
392
%%PSL%%%%DATADIR%%/red/charname.b
393
%%PSL%%%%DATADIR%%/red/charpol.b
394
%%PSL%%%%DATADIR%%/red/chebysh.b
395
%%PSL%%%%DATADIR%%/red/checkind.b
396
%%PSL%%%%DATADIR%%/red/cholesky.b
397
%%PSL%%%%DATADIR%%/red/cl.b
398
%%PSL%%%%DATADIR%%/red/clbnf.b
399
%%PSL%%%%DATADIR%%/red/clmisc.b
400
%%PSL%%%%DATADIR%%/red/clnf.b
401
%%PSL%%%%DATADIR%%/red/clprl.b
402
%%PSL%%%%DATADIR%%/red/clqe.b
403
%%PSL%%%%DATADIR%%/red/clresolv.b
404
%%PSL%%%%DATADIR%%/red/clsimpl.b
405
%%PSL%%%%DATADIR%%/red/clsl.b
406
%%PSL%%%%DATADIR%%/red/cltab.b
407
%%PSL%%%%DATADIR%%/red/coates.b
408
%%PSL%%%%DATADIR%%/red/coatesid.b
409
%%PSL%%%%DATADIR%%/red/codad1.b
410
%%PSL%%%%DATADIR%%/red/codad2.b
411
%%PSL%%%%DATADIR%%/red/codctl.b
412
%%PSL%%%%DATADIR%%/red/coddec.b
413
%%PSL%%%%DATADIR%%/red/coddom.b
414
%%PSL%%%%DATADIR%%/red/codgen.b
415
%%PSL%%%%DATADIR%%/red/codhrn.b
416
%%PSL%%%%DATADIR%%/red/codmat.b
417
%%PSL%%%%DATADIR%%/red/codopt.b
418
%%PSL%%%%DATADIR%%/red/codpri.b
419
%%PSL%%%%DATADIR%%/red/codstr.b
420
%%PSL%%%%DATADIR%%/red/coeff.b
421
%%PSL%%%%DATADIR%%/red/coeffts.b
422
%%PSL%%%%DATADIR%%/red/cofactor.b
423
%%PSL%%%%DATADIR%%/red/comfac.b
424
%%PSL%%%%DATADIR%%/red/comment.b
425
%%PSL%%%%DATADIR%%/red/compact.b
426
%%PSL%%%%DATADIR%%/red/compactf.b
427
%%PSL%%%%DATADIR%%/red/compat.b
428
%%PSL%%%%DATADIR%%/red/complx.b
429
%%PSL%%%%DATADIR%%/red/complxp.b
430
%%PSL%%%%DATADIR%%/red/compopr.b
431
%%PSL%%%%DATADIR%%/red/comprd.b
432
%%PSL%%%%DATADIR%%/red/condense.b
433
%%PSL%%%%DATADIR%%/red/conj.b
434
%%PSL%%%%DATADIR%%/red/conlaw.b
435
%%PSL%%%%DATADIR%%/red/conlaw0.b
436
%%PSL%%%%DATADIR%%/red/conlaw1.b
437
%%PSL%%%%DATADIR%%/red/conlaw2.b
438
%%PSL%%%%DATADIR%%/red/conlaw3.b
439
%%PSL%%%%DATADIR%%/red/conlaw4.b
440
%%PSL%%%%DATADIR%%/red/constre.b
441
%%PSL%%%%DATADIR%%/red/contact.b
442
%%PSL%%%%DATADIR%%/red/contents.b
443
%%PSL%%%%DATADIR%%/red/contfr.b
444
%%PSL%%%%DATADIR%%/red/contfrac.b
445
%%PSL%%%%DATADIR%%/red/control.b
446
%%PSL%%%%DATADIR%%/red/contrtns.b
447
%%PSL%%%%DATADIR%%/red/convert.b
448
%%PSL%%%%DATADIR%%/red/cpxrn.b
449
%%PSL%%%%DATADIR%%/red/crack.b
450
%%PSL%%%%DATADIR%%/red/crdec.b
451
%%PSL%%%%DATADIR%%/red/crdiffelim.b
452
%%PSL%%%%DATADIR%%/red/crelem.b
453
%%PSL%%%%DATADIR%%/red/crequsol.b
454
%%PSL%%%%DATADIR%%/red/crgb.b
455
%%PSL%%%%DATADIR%%/red/crgensep.b
456
%%PSL%%%%DATADIR%%/red/crhomalg.b
457
%%PSL%%%%DATADIR%%/red/crident.b
458
%%PSL%%%%DATADIR%%/red/crineq.b
459
%%PSL%%%%DATADIR%%/red/crinit.b
460
%%PSL%%%%DATADIR%%/red/crint.b
461
%%PSL%%%%DATADIR%%/red/crlinalg.b
462
%%PSL%%%%DATADIR%%/red/crmain.b
463
%%PSL%%%%DATADIR%%/red/crpvm.b
464
%%PSL%%%%DATADIR%%/red/crsep.b
465
%%PSL%%%%DATADIR%%/red/crshort.b
466
%%PSL%%%%DATADIR%%/red/crsimp.b
467
%%PSL%%%%DATADIR%%/red/crsimpso.b
468
%%PSL%%%%DATADIR%%/red/crstruc.b
469
%%PSL%%%%DATADIR%%/red/crsubsys.b
470
%%PSL%%%%DATADIR%%/red/crtrafo.b
471
%%PSL%%%%DATADIR%%/red/crunder.b
472
%%PSL%%%%DATADIR%%/red/crutil.b
473
%%PSL%%%%DATADIR%%/red/csolve.b
474
%%PSL%%%%DATADIR%%/red/ctintro.b
475
%%PSL%%%%DATADIR%%/red/cvit.b
476
%%PSL%%%%DATADIR%%/red/cvitmap.b
477
%%PSL%%%%DATADIR%%/red/dcfsf.b
478
%%PSL%%%%DATADIR%%/red/dcfsfkacem.b
479
%%PSL%%%%DATADIR%%/red/dcfsfmisc.b
480
%%PSL%%%%DATADIR%%/red/dcfsfqe.b
481
%%PSL%%%%DATADIR%%/red/dcfsfsism.b
482
%%PSL%%%%DATADIR%%/red/decompos.b
483
%%PSL%%%%DATADIR%%/red/decrep.b
484
%%PSL%%%%DATADIR%%/red/defint.b
485
%%PSL%%%%DATADIR%%/red/defint0.b
486
%%PSL%%%%DATADIR%%/red/definta.b
487
%%PSL%%%%DATADIR%%/red/defintb.b
488
%%PSL%%%%DATADIR%%/red/defintc.b
489
%%PSL%%%%DATADIR%%/red/defintd.b
490
%%PSL%%%%DATADIR%%/red/definte.b
491
%%PSL%%%%DATADIR%%/red/defintf.b
492
%%PSL%%%%DATADIR%%/red/defintg.b
493
%%PSL%%%%DATADIR%%/red/definth.b
494
%%PSL%%%%DATADIR%%/red/definti.b
495
%%PSL%%%%DATADIR%%/red/defintj.b
496
%%PSL%%%%DATADIR%%/red/defintk.b
497
%%PSL%%%%DATADIR%%/red/defintx.b
498
%%PSL%%%%DATADIR%%/red/degform.b
499
%%PSL%%%%DATADIR%%/red/degsets.b
500
%%PSL%%%%DATADIR%%/red/depend.b
501
%%PSL%%%%DATADIR%%/red/desir.b
502
%%PSL%%%%DATADIR%%/red/det.b
503
%%PSL%%%%DATADIR%%/red/df2q.b
504
%%PSL%%%%DATADIR%%/red/dfpart.b
505
%%PSL%%%%DATADIR%%/red/dfprin.b
506
%%PSL%%%%DATADIR%%/red/diff.b
507
%%PSL%%%%DATADIR%%/red/dilog.b
508
%%PSL%%%%DATADIR%%/red/dint.b
509
%%PSL%%%%DATADIR%%/red/dip2a.b
510
%%PSL%%%%DATADIR%%/red/dipoly.b
511
%%PSL%%%%DATADIR%%/red/dipoly1.b
512
%%PSL%%%%DATADIR%%/red/dipprint.b
513
%%PSL%%%%DATADIR%%/red/dipvars.b
514
%%PSL%%%%DATADIR%%/red/discret.b
515
%%PSL%%%%DATADIR%%/red/disjoin.b
516
%%PSL%%%%DATADIR%%/red/distrib.b
517
%%PSL%%%%DATADIR%%/red/divide.b
518
%%PSL%%%%DATADIR%%/red/dmode.b
519
%%PSL%%%%DATADIR%%/red/dmodeop.b
520
%%PSL%%%%DATADIR%%/red/dp.b
521
%%PSL%%%%DATADIR%%/red/dpmat.b
522
%%PSL%%%%DATADIR%%/red/dpoly.b
523
%%PSL%%%%DATADIR%%/red/driver.b
524
%%PSL%%%%DATADIR%%/red/dummy.b
525
%%PSL%%%%DATADIR%%/red/dummy1.b
526
%%PSL%%%%DATADIR%%/red/dummy2.b
527
%%PSL%%%%DATADIR%%/red/dummycnt.b
528
%%PSL%%%%DATADIR%%/red/dvfsf.b
529
%%PSL%%%%DATADIR%%/red/dvfsfmisc.b
530
%%PSL%%%%DATADIR%%/red/dvfsfqe.b
531
%%PSL%%%%DATADIR%%/red/dvfsfsiat.b
532
%%PSL%%%%DATADIR%%/red/dvfsfsism.b
533
%%PSL%%%%DATADIR%%/red/eds.b
534
%%PSL%%%%DATADIR%%/red/edsaux.b
535
%%PSL%%%%DATADIR%%/red/edscfrm.b
536
%%PSL%%%%DATADIR%%/red/edsequiv.b
537
%%PSL%%%%DATADIR%%/red/edseval.b
538
%%PSL%%%%DATADIR%%/red/edsexptl.b
539
%%PSL%%%%DATADIR%%/red/edsnorml.b
540
%%PSL%%%%DATADIR%%/red/edspatch.b
541
%%PSL%%%%DATADIR%%/red/edspde.b
542
%%PSL%%%%DATADIR%%/red/edssolve.b
543
%%PSL%%%%DATADIR%%/red/edsuser.b
544
%%PSL%%%%DATADIR%%/red/elem.b
545
%%PSL%%%%DATADIR%%/red/element.b
546
%%PSL%%%%DATADIR%%/red/entry.b
547
%%PSL%%%%DATADIR%%/red/eqn.b
548
%%PSL%%%%DATADIR%%/red/evalmaps.b
549
%%PSL%%%%DATADIR%%/red/exaux.b
550
%%PSL%%%%DATADIR%%/red/excalc.b
551
%%PSL%%%%DATADIR%%/red/exdf.b
552
%%PSL%%%%DATADIR%%/red/exintro.b
553
%%PSL%%%%DATADIR%%/red/exlists.b
554
%%PSL%%%%DATADIR%%/red/expon.b
555
%%PSL%%%%DATADIR%%/red/expres.b
556
%%PSL%%%%DATADIR%%/red/exptchk.b
557
%%PSL%%%%DATADIR%%/red/exptf.b
558
%%PSL%%%%DATADIR%%/red/expvec.b
559
%%PSL%%%%DATADIR%%/red/extops.b
560
%%PSL%%%%DATADIR%%/red/extout.b
561
%%PSL%%%%DATADIR%%/red/ezgcd.b
562
%%PSL%%%%DATADIR%%/red/ezgcdf.b
563
%%PSL%%%%DATADIR%%/red/facform.b
564
%%PSL%%%%DATADIR%%/red/facmisc.b
565
%%PSL%%%%DATADIR%%/red/facmod.b
566
%%PSL%%%%DATADIR%%/red/facprim.b
567
%%PSL%%%%DATADIR%%/red/facstr.b
568
%%PSL%%%%DATADIR%%/red/factor.b
569
%%PSL%%%%DATADIR%%/red/facuni.b
570
%%PSL%%%%DATADIR%%/red/farith.b
571
%%PSL%%%%DATADIR%%/red/fastmath.b
572
%%PSL%%%%DATADIR%%/red/fastmod.b
573
%%PSL%%%%DATADIR%%/red/fide.b
574
%%PSL%%%%DATADIR%%/red/fide1.b
575
%%PSL%%%%DATADIR%%/red/findmagc.b
576
%%PSL%%%%DATADIR%%/red/findres.b
577
%%PSL%%%%DATADIR%%/red/finitise.b
578
%%PSL%%%%DATADIR%%/red/fixes2.b
579
%%PSL%%%%DATADIR%%/red/fixsubf.b
580
%%PSL%%%%DATADIR%%/red/fmprint.b
581
%%PSL%%%%DATADIR%%/red/for88.b
582
%%PSL%%%%DATADIR%%/red/forall.b
583
%%PSL%%%%DATADIR%%/red/forall4.b
584
%%PSL%%%%DATADIR%%/red/forder.b
585
%%PSL%%%%DATADIR%%/red/form.b
586
%%PSL%%%%DATADIR%%/red/form4.b
587
%%PSL%%%%DATADIR%%/red/forstat.b
588
%%PSL%%%%DATADIR%%/red/forstat4.b
589
%%PSL%%%%DATADIR%%/red/fortpri.b
590
%%PSL%%%%DATADIR%%/red/fourdom.b
591
%%PSL%%%%DATADIR%%/red/fourplus.b
592
%%PSL%%%%DATADIR%%/red/fps.b
593
%%PSL%%%%DATADIR%%/red/fracdi.b
594
%%PSL%%%%DATADIR%%/red/frames.b
595
%%PSL%%%%DATADIR%%/red/froben.b
596
%%PSL%%%%DATADIR%%/red/fsimplex.b
597
%%PSL%%%%DATADIR%%/red/gauss.b
598
%%PSL%%%%DATADIR%%/red/gb.b
599
%%PSL%%%%DATADIR%%/red/gbsc.b
600
%%PSL%%%%DATADIR%%/red/gcd.b
601
%%PSL%%%%DATADIR%%/red/gcref.b
602
%%PSL%%%%DATADIR%%/red/general.b
603
%%PSL%%%%DATADIR%%/red/genmod.b
604
%%PSL%%%%DATADIR%%/red/genparser.b
605
%%PSL%%%%DATADIR%%/red/genpurfn.b
606
%%PSL%%%%DATADIR%%/red/gentens.b
607
%%PSL%%%%DATADIR%%/red/gentran.b
608
%%PSL%%%%DATADIR%%/red/genus.b
609
%%PSL%%%%DATADIR%%/red/geometry.b
610
%%PSL%%%%DATADIR%%/red/geoprover.b
611
%%PSL%%%%DATADIR%%/red/ghyper.b
612
%%PSL%%%%DATADIR%%/red/gint.b
613
%%PSL%%%%DATADIR%%/red/glexconv.b
614
%%PSL%%%%DATADIR%%/red/glmat.b
615
%%PSL%%%%DATADIR%%/red/glsolve.b
616
%%PSL%%%%DATADIR%%/red/gnuintfc.b
617
%%PSL%%%%DATADIR%%/red/gnupldrv.b
618
%%PSL%%%%DATADIR%%/red/gnuplot.b
619
%%PSL%%%%DATADIR%%/red/goutput.b
620
%%PSL%%%%DATADIR%%/red/gparser.b
621
%%PSL%%%%DATADIR%%/red/gramschm.b
622
%%PSL%%%%DATADIR%%/red/grassman.b
623
%%PSL%%%%DATADIR%%/red/greduo.b
624
%%PSL%%%%DATADIR%%/red/grinter2.b
625
%%PSL%%%%DATADIR%%/red/grinterf.b
626
%%PSL%%%%DATADIR%%/red/groeb.b
627
%%PSL%%%%DATADIR%%/red/groebcri.b
628
%%PSL%%%%DATADIR%%/red/groebf.b
629
%%PSL%%%%DATADIR%%/red/groebfac.b
630
%%PSL%%%%DATADIR%%/red/groebidq.b
631
%%PSL%%%%DATADIR%%/red/groebman.b
632
%%PSL%%%%DATADIR%%/red/groebmes.b
633
%%PSL%%%%DATADIR%%/red/groebner.b
634
%%PSL%%%%DATADIR%%/red/groebnr2.b
635
%%PSL%%%%DATADIR%%/red/groebopt.b
636
%%PSL%%%%DATADIR%%/red/groebrst.b
637
%%PSL%%%%DATADIR%%/red/groebsea.b
638
%%PSL%%%%DATADIR%%/red/groebsor.b
639
%%PSL%%%%DATADIR%%/red/groebspa.b
640
%%PSL%%%%DATADIR%%/red/groebtra.b
641
%%PSL%%%%DATADIR%%/red/groesolv.b
642
%%PSL%%%%DATADIR%%/red/groeweak.b
643
%%PSL%%%%DATADIR%%/red/guardian.b
644
%%PSL%%%%DATADIR%%/red/guardianprint.b
645
%%PSL%%%%DATADIR%%/red/guardianschemes.b
646
%%PSL%%%%DATADIR%%/red/hacksqrt.b
647
%%PSL%%%%DATADIR%%/red/halfangl.b
648
%%PSL%%%%DATADIR%%/red/harmonic.b
649
%%PSL%%%%DATADIR%%/red/hcvctors.b
650
%%PSL%%%%DATADIR%%/red/hdiff.b
651
%%PSL%%%%DATADIR%%/red/helpasst.b
652
%%PSL%%%%DATADIR%%/red/hephys.b
653
%%PSL%%%%DATADIR%%/red/hf.b
654
%%PSL%%%%DATADIR%%/red/hggroeb.b
655
%%PSL%%%%DATADIR%%/red/hgrsolve.b
656
%%PSL%%%%DATADIR%%/red/hilbertp.b
657
%%PSL%%%%DATADIR%%/red/hilberts.b
658
%%PSL%%%%DATADIR%%/red/hille.b
659
%%PSL%%%%DATADIR%%/red/hodge.b
660
%%PSL%%%%DATADIR%%/red/homog.b
661
%%PSL%%%%DATADIR%%/red/horner.b
662
%%PSL%%%%DATADIR%%/red/hsub.b
663
%%PSL%%%%DATADIR%%/red/hugo
664
%%PSL%%%%DATADIR%%/red/hurwp.b
665
%%PSL%%%%DATADIR%%/red/ibalp.b
666
%%PSL%%%%DATADIR%%/red/ibalpkapur.b
667
%%PSL%%%%DATADIR%%/red/ibalpqsat.b
668
%%PSL%%%%DATADIR%%/red/ibasics.b
669
%%PSL%%%%DATADIR%%/red/ideals.b
670
%%PSL%%%%DATADIR%%/red/idepend.b
671
%%PSL%%%%DATADIR%%/red/idexf.b
672
%%PSL%%%%DATADIR%%/red/iimet.b
673
%%PSL%%%%DATADIR%%/red/imageset.b
674
%%PSL%%%%DATADIR%%/red/indices.b
675
%%PSL%%%%DATADIR%%/red/indsymm.b
676
%%PSL%%%%DATADIR%%/red/indxprin.b
677
%%PSL%%%%DATADIR%%/red/ineq.b
678
%%PSL%%%%DATADIR%%/red/infix.b
679
%%PSL%%%%DATADIR%%/red/inline-defs.dat
680
%%PSL%%%%DATADIR%%/red/innerprd.b
681
%%PSL%%%%DATADIR%%/red/inspect.b
682
%%PSL%%%%DATADIR%%/red/int.b
683
%%PSL%%%%DATADIR%%/red/intbasis.b
684
%%PSL%%%%DATADIR%%/red/integrator.b
685
%%PSL%%%%DATADIR%%/red/inter.b
686
%%PSL%%%%DATADIR%%/red/interfac.b
687
%%PSL%%%%DATADIR%%/red/interpol.b
688
%%PSL%%%%DATADIR%%/red/intf.b
689
%%PSL%%%%DATADIR%%/red/intfac.b
690
%%PSL%%%%DATADIR%%/red/intfierz.b
691
%%PSL%%%%DATADIR%%/red/intrfc.b
692
%%PSL%%%%DATADIR%%/red/intro.b
693
%%PSL%%%%DATADIR%%/red/inttaylr.b
694
%%PSL%%%%DATADIR%%/red/invbase.b
695
%%PSL%%%%DATADIR%%/red/invbcomp.b
696
%%PSL%%%%DATADIR%%/red/invbint.b
697
%%PSL%%%%DATADIR%%/red/invol.b
698
%%PSL%%%%DATADIR%%/red/io.b
699
%%PSL%%%%DATADIR%%/red/ioto.b
700
%%PSL%%%%DATADIR%%/red/ir2om.b
701
%%PSL%%%%DATADIR%%/red/isolve.b
702
%%PSL%%%%DATADIR%%/red/jhddiff.b
703
%%PSL%%%%DATADIR%%/red/jhdriver.b
704
%%PSL%%%%DATADIR%%/red/jordan.b
705
%%PSL%%%%DATADIR%%/red/jordsymb.b
706
%%PSL%%%%DATADIR%%/red/jpatches.b
707
%%PSL%%%%DATADIR%%/red/jsymbols.b
708
%%PSL%%%%DATADIR%%/red/kernel.b
709
%%PSL%%%%DATADIR%%/red/kredelw.b
710
%%PSL%%%%DATADIR%%/red/kronf.b
711
%%PSL%%%%DATADIR%%/red/kuechl.b
712
%%PSL%%%%DATADIR%%/red/lalr.b
713
%%PSL%%%%DATADIR%%/red/lamatrix.b
714
%%PSL%%%%DATADIR%%/red/laplace.b
715
%%PSL%%%%DATADIR%%/red/lf.b
716
%%PSL%%%%DATADIR%%/red/libreduce.b
717
%%PSL%%%%DATADIR%%/red/lie.b
718
%%PSL%%%%DATADIR%%/red/lie1234.b
719
%%PSL%%%%DATADIR%%/red/liedf.b
720
%%PSL%%%%DATADIR%%/red/liendmc1.b
721
%%PSL%%%%DATADIR%%/red/liepde.b
722
%%PSL%%%%DATADIR%%/red/lievalfm.b
723
%%PSL%%%%DATADIR%%/red/limits.b
724
%%PSL%%%%DATADIR%%/red/linalg.b
725
%%PSL%%%%DATADIR%%/red/linband.b
726
%%PSL%%%%DATADIR%%/red/linineq.b
727
%%PSL%%%%DATADIR%%/red/linmodp.b
728
%%PSL%%%%DATADIR%%/red/linop.b
729
%%PSL%%%%DATADIR%%/red/linrec.b
730
%%PSL%%%%DATADIR%%/red/linrel.b
731
%%PSL%%%%DATADIR%%/red/liqsimp1.b
732
%%PSL%%%%DATADIR%%/red/liqsimp2.b
733
%%PSL%%%%DATADIR%%/red/list.b
734
%%PSL%%%%DATADIR%%/red/listvecops.b
735
%%PSL%%%%DATADIR%%/red/log2atan.b
736
%%PSL%%%%DATADIR%%/red/logsort.b
737
%%PSL%%%%DATADIR%%/red/loops.b
738
%%PSL%%%%DATADIR%%/red/loops88.b
739
%%PSL%%%%DATADIR%%/red/lpdo.b
740
%%PSL%%%%DATADIR%%/red/lpri.b
741
%%PSL%%%%DATADIR%%/red/lspc.b
742
%%PSL%%%%DATADIR%%/red/lspfor.b
743
%%PSL%%%%DATADIR%%/red/lsppasc.b
744
%%PSL%%%%DATADIR%%/red/lsprat.b
745
%%PSL%%%%DATADIR%%/red/lto.b
746
%%PSL%%%%DATADIR%%/red/ludecom.b
747
%%PSL%%%%DATADIR%%/red/makefour.b
748
%%PSL%%%%DATADIR%%/red/makevars.b
749
%%PSL%%%%DATADIR%%/red/maninp.b
750
%%PSL%%%%DATADIR%%/red/map.b
751
%%PSL%%%%DATADIR%%/red/map2strn.b
752
%%PSL%%%%DATADIR%%/red/matarg.b
753
%%PSL%%%%DATADIR%%/red/math.b
754
%%PSL%%%%DATADIR%%/red/mathml.b
755
%%PSL%%%%DATADIR%%/red/mathmlom.b
756
%%PSL%%%%DATADIR%%/red/mathpr.b
757
%%PSL%%%%DATADIR%%/red/matop.b
758
%%PSL%%%%DATADIR%%/red/matpri.b
759
%%PSL%%%%DATADIR%%/red/matproc.b
760
%%PSL%%%%DATADIR%%/red/matrext.b
761
%%PSL%%%%DATADIR%%/red/matrix.b
762
%%PSL%%%%DATADIR%%/red/matrix4.b
763
%%PSL%%%%DATADIR%%/red/matsm.b
764
%%PSL%%%%DATADIR%%/red/maxmin.b
765
%%PSL%%%%DATADIR%%/red/meijerg.b
766
%%PSL%%%%DATADIR%%/red/mhensfns.b
767
%%PSL%%%%DATADIR%%/red/minlngth.b
768
%%PSL%%%%DATADIR%%/red/misc.b
769
%%PSL%%%%DATADIR%%/red/mksp.b
770
%%PSL%%%%DATADIR%%/red/mma.awk
771
%%PSL%%%%DATADIR%%/red/mma.b
772
%%PSL%%%%DATADIR%%/red/mml_ir.b
773
%%PSL%%%%DATADIR%%/red/mo.b
774
%%PSL%%%%DATADIR%%/red/modify.b
775
%%PSL%%%%DATADIR%%/red/modlineq.b
776
%%PSL%%%%DATADIR%%/red/modpoly.b
777
%%PSL%%%%DATADIR%%/red/modroots.b
778
%%PSL%%%%DATADIR%%/red/modsolve.b
779
%%PSL%%%%DATADIR%%/red/modsqrt.b
780
%%PSL%%%%DATADIR%%/red/modsr.b
781
%%PSL%%%%DATADIR%%/red/modular.b
782
%%PSL%%%%DATADIR%%/red/module.b
783
%%PSL%%%%DATADIR%%/red/moid.b
784
%%PSL%%%%DATADIR%%/red/mprint.b
785
%%PSL%%%%DATADIR%%/red/mri.b
786
%%PSL%%%%DATADIR%%/red/mri_ofsf.b
787
%%PSL%%%%DATADIR%%/red/mri_pasf.b
788
%%PSL%%%%DATADIR%%/red/mriqe.b
789
%%PSL%%%%DATADIR%%/red/mrvlimit.b
790
%%PSL%%%%DATADIR%%/red/mstruct.b
791
%%PSL%%%%DATADIR%%/red/mtables.b
792
%%PSL%%%%DATADIR%%/red/multihen.b
793
%%PSL%%%%DATADIR%%/red/multroot.b
794
%%PSL%%%%DATADIR%%/red/mv.b
795
%%PSL%%%%DATADIR%%/red/mvmatch.b
796
%%PSL%%%%DATADIR%%/red/nagell.b
797
%%PSL%%%%DATADIR%%/red/nbasis.b
798
%%PSL%%%%DATADIR%%/red/ncdip.b
799
%%PSL%%%%DATADIR%%/red/ncenv.b
800
%%PSL%%%%DATADIR%%/red/ncfactor.b
801
%%PSL%%%%DATADIR%%/red/ncgroeb.b
802
%%PSL%%%%DATADIR%%/red/ncout.b
803
%%PSL%%%%DATADIR%%/red/ncpoly.b
804
%%PSL%%%%DATADIR%%/red/nestdom.b
805
%%PSL%%%%DATADIR%%/red/nestrad.b
806
%%PSL%%%%DATADIR%%/red/newtok.b
807
%%PSL%%%%DATADIR%%/red/newton.b
808
%%PSL%%%%DATADIR%%/red/noncom2.b
809
%%PSL%%%%DATADIR%%/red/normform.b
810
%%PSL%%%%DATADIR%%/red/nrstroot.b
811
%%PSL%%%%DATADIR%%/red/nssimp.b
812
%%PSL%%%%DATADIR%%/red/nullsp.b
813
%%PSL%%%%DATADIR%%/red/numeric.b
814
%%PSL%%%%DATADIR%%/red/numeval.b
815
%%PSL%%%%DATADIR%%/red/numfit.b
816
%%PSL%%%%DATADIR%%/red/numint.b
817
%%PSL%%%%DATADIR%%/red/numsolve.b
818
%%PSL%%%%DATADIR%%/red/numsup.b
819
%%PSL%%%%DATADIR%%/red/odeintfc.b
820
%%PSL%%%%DATADIR%%/red/odelin.b
821
%%PSL%%%%DATADIR%%/red/odenon1.b
822
%%PSL%%%%DATADIR%%/red/odenonn.b
823
%%PSL%%%%DATADIR%%/red/odepatch.b
824
%%PSL%%%%DATADIR%%/red/odesolve.b
825
%%PSL%%%%DATADIR%%/red/odespcfn.b
826
%%PSL%%%%DATADIR%%/red/odetop.b
827
%%PSL%%%%DATADIR%%/red/odim.b
828
%%PSL%%%%DATADIR%%/red/ofsf.b
829
%%PSL%%%%DATADIR%%/red/ofsfanuex.b
830
%%PSL%%%%DATADIR%%/red/ofsfbnf.b
831
%%PSL%%%%DATADIR%%/red/ofsfcad.b
832
%%PSL%%%%DATADIR%%/red/ofsfcadproj.b
833
%%PSL%%%%DATADIR%%/red/ofsfdecdeg.b
834
%%PSL%%%%DATADIR%%/red/ofsfdet.b
835
%%PSL%%%%DATADIR%%/red/ofsfdpep.b
836
%%PSL%%%%DATADIR%%/red/ofsfexfr.b
837
%%PSL%%%%DATADIR%%/red/ofsfgs.b
838
%%PSL%%%%DATADIR%%/red/ofsfhqe.b
839
%%PSL%%%%DATADIR%%/red/ofsflp.b
840
%%PSL%%%%DATADIR%%/red/ofsfmisc.b
841
%%PSL%%%%DATADIR%%/red/ofsfopt.b
842
%%PSL%%%%DATADIR%%/red/ofsfqe.b
843
%%PSL%%%%DATADIR%%/red/ofsfsiat.b
844
%%PSL%%%%DATADIR%%/red/ofsfsism.b
845
%%PSL%%%%DATADIR%%/red/ofsftfc.b
846
%%PSL%%%%DATADIR%%/red/ofsftrop.b
847
%%PSL%%%%DATADIR%%/red/ofsfvsl.b
848
%%PSL%%%%DATADIR%%/red/ofsfxopt.b
849
%%PSL%%%%DATADIR%%/red/om2ir.b
850
%%PSL%%%%DATADIR%%/red/opertens.b
851
%%PSL%%%%DATADIR%%/red/opmtch.b
852
%%PSL%%%%DATADIR%%/red/order.b
853
%%PSL%%%%DATADIR%%/red/orthovec.b
854
%%PSL%%%%DATADIR%%/red/package4.b
855
%%PSL%%%%DATADIR%%/red/pade.b
856
%%PSL%%%%DATADIR%%/red/paraset.b
857
%%PSL%%%%DATADIR%%/red/parray.b
858
%%PSL%%%%DATADIR%%/red/parser.b
859
%%PSL%%%%DATADIR%%/red/part.b
860
%%PSL%%%%DATADIR%%/red/partdf.b
861
%%PSL%%%%DATADIR%%/red/partitns.b
862
%%PSL%%%%DATADIR%%/red/partitsf.b
863
%%PSL%%%%DATADIR%%/red/pasf.b
864
%%PSL%%%%DATADIR%%/red/pasfbnf.b
865
%%PSL%%%%DATADIR%%/red/pasfmisc.b
866
%%PSL%%%%DATADIR%%/red/pasfnf.b
867
%%PSL%%%%DATADIR%%/red/pasfopt.b
868
%%PSL%%%%DATADIR%%/red/pasfqe.b
869
%%PSL%%%%DATADIR%%/red/pasfresolve.b
870
%%PSL%%%%DATADIR%%/red/pasfsiat.b
871
%%PSL%%%%DATADIR%%/red/pasfsism.b
872
%%PSL%%%%DATADIR%%/red/pattdefn.b
873
%%PSL%%%%DATADIR%%/red/pattperm.b
874
%%PSL%%%%DATADIR%%/red/perm1.b
875
%%PSL%%%%DATADIR%%/red/perms.b
876
%%PSL%%%%DATADIR%%/red/pf.b
877
%%PSL%%%%DATADIR%%/red/pfacmult.b
878
%%PSL%%%%DATADIR%%/red/pfactor.b
879
%%PSL%%%%DATADIR%%/red/pgauss.b
880
%%PSL%%%%DATADIR%%/red/pgcond.b
881
%%PSL%%%%DATADIR%%/red/pgsm.b
882
%%PSL%%%%DATADIR%%/red/physop.b
883
%%PSL%%%%DATADIR%%/red/pident.b
884
%%PSL%%%%DATADIR%%/red/places.b
885
%%PSL%%%%DATADIR%%/red/plot.b
886
%%PSL%%%%DATADIR%%/red/plotexp2.b
887
%%PSL%%%%DATADIR%%/red/plotexp3.b
888
%%PSL%%%%DATADIR%%/red/plotimp2.b
889
%%PSL%%%%DATADIR%%/red/plotimp3.b
890
%%PSL%%%%DATADIR%%/red/plotnum.b
891
%%PSL%%%%DATADIR%%/red/plotsynt.b
892
%%PSL%%%%DATADIR%%/red/pltpara.b
893
%%PSL%%%%DATADIR%%/red/pm.b
894
%%PSL%%%%DATADIR%%/red/pmintrfc.b
895
%%PSL%%%%DATADIR%%/red/pmpatch.b
896
%%PSL%%%%DATADIR%%/red/pmrules.b
897
%%PSL%%%%DATADIR%%/red/polineq.b
898
%%PSL%%%%DATADIR%%/red/polrep.b
899
%%PSL%%%%DATADIR%%/red/poly.b
900
%%PSL%%%%DATADIR%%/red/polydiv.b
901
%%PSL%%%%DATADIR%%/red/polyexns.b
902
%%PSL%%%%DATADIR%%/red/polyop.b
903
%%PSL%%%%DATADIR%%/red/ppsoln.b
904
%%PSL%%%%DATADIR%%/red/pre.b
905
%%PSL%%%%DATADIR%%/red/precoats.b
906
%%PSL%%%%DATADIR%%/red/prep.b
907
%%PSL%%%%DATADIR%%/red/pretty.b
908
%%PSL%%%%DATADIR%%/red/prime.b
909
%%PSL%%%%DATADIR%%/red/primfac.b
910
%%PSL%%%%DATADIR%%/red/primitive.b
911
%%PSL%%%%DATADIR%%/red/proc.b
912
%%PSL%%%%DATADIR%%/red/proc4.b
913
%%PSL%%%%DATADIR%%/red/prod.b
914
%%PSL%%%%DATADIR%%/red/profile.b
915
%%PSL%%%%DATADIR%%/red/prolong.b
916
%%PSL%%%%DATADIR%%/red/psl.b
917
%%PSL%%%%DATADIR%%/red/pslprolo.b
918
%%PSL%%%%DATADIR%%/red/pslrend.b
919
%%PSL%%%%DATADIR%%/red/pullback.b
920
%%PSL%%%%DATADIR%%/red/pvector.b
921
%%PSL%%%%DATADIR%%/red/qepcad.awk
922
%%PSL%%%%DATADIR%%/red/qepcad.b
923
%%PSL%%%%DATADIR%%/red/qhull.b
924
%%PSL%%%%DATADIR%%/red/qqe.b
925
%%PSL%%%%DATADIR%%/red/qqe_ofsf.b
926
%%PSL%%%%DATADIR%%/red/qqemisc.b
927
%%PSL%%%%DATADIR%%/red/qqeqe.b
928
%%PSL%%%%DATADIR%%/red/qqeqemisc.b
929
%%PSL%%%%DATADIR%%/red/qqesiat.b
930
%%PSL%%%%DATADIR%%/red/qqesism.b
931
%%PSL%%%%DATADIR%%/red/qqetrans.b
932
%%PSL%%%%DATADIR%%/red/qsum.b
933
%%PSL%%%%DATADIR%%/red/quartic.b
934
%%PSL%%%%DATADIR%%/red/quot.b
935
%%PSL%%%%DATADIR%%/red/quotf.b
936
%%PSL%%%%DATADIR%%/red/raarith.b
937
%%PSL%%%%DATADIR%%/red/raiv.b
938
%%PSL%%%%DATADIR%%/red/random.b
939
%%PSL%%%%DATADIR%%/red/randpoly.b
940
%%PSL%%%%DATADIR%%/red/rank.b
941
%%PSL%%%%DATADIR%%/red/ranks.b
942
%%PSL%%%%DATADIR%%/red/rankstat.b
943
%%PSL%%%%DATADIR%%/red/ranum.b
944
%%PSL%%%%DATADIR%%/red/rarcount.b
945
%%PSL%%%%DATADIR%%/red/ratalgo.b
946
%%PSL%%%%DATADIR%%/red/rataprx.b
947
%%PSL%%%%DATADIR%%/red/ratint.b
948
%%PSL%%%%DATADIR%%/red/rational.b
949
%%PSL%%%%DATADIR%%/red/ratjord.b
950
%%PSL%%%%DATADIR%%/red/ratprin.b
951
%%PSL%%%%DATADIR%%/red/rcref.b
952
%%PSL%%%%DATADIR%%/red/rdelem.b
953
%%PSL%%%%DATADIR%%/red/reacteqn.b
954
%%PSL%%%%DATADIR%%/red/realroot.b
955
%%PSL%%%%DATADIR%%/red/records.b
956
%%PSL%%%%DATADIR%%/red/recsimpl.b
957
%%PSL%%%%DATADIR%%/red/red.b
958
%%PSL%%%%DATADIR%%/red/red2cvit.b
959
%%PSL%%%%DATADIR%%/red/reddom.b
960
%%PSL%%%%DATADIR%%/red/redfront.b
961
%%PSL%%%%DATADIR%%/red/redio.b
962
%%PSL%%%%DATADIR%%/red/redlog.b
963
%%PSL%%%%DATADIR%%/red/redlsp.b
964
%%PSL%%%%DATADIR%%/red/reduce.img
965
%%PSL%%%%DATADIR%%/red/reduce4.b
966
%%PSL%%%%DATADIR%%/red/reform.b
967
%%PSL%%%%DATADIR%%/red/remake.b
968
%%PSL%%%%DATADIR%%/red/removecm.b
969
%%PSL%%%%DATADIR%%/red/reord.b
970
%%PSL%%%%DATADIR%%/red/res.b
971
%%PSL%%%%DATADIR%%/red/reset.b
972
%%PSL%%%%DATADIR%%/red/residue.b
973
%%PSL%%%%DATADIR%%/red/restore.b
974
%%PSL%%%%DATADIR%%/red/restrict.b
975
%%PSL%%%%DATADIR%%/red/resultnt.b
976
%%PSL%%%%DATADIR%%/red/reval.b
977
%%PSL%%%%DATADIR%%/red/reval4.b
978
%%PSL%%%%DATADIR%%/red/ring.b
979
%%PSL%%%%DATADIR%%/red/rlami.b
980
%%PSL%%%%DATADIR%%/red/rlcont.b
981
%%PSL%%%%DATADIR%%/red/rlfi.b
982
%%PSL%%%%DATADIR%%/red/rlhelp.b
983
%%PSL%%%%DATADIR%%/red/rlisp.b
984
%%PSL%%%%DATADIR%%/red/rlisp88.b
985
%%PSL%%%%DATADIR%%/red/rlsched.b
986
%%PSL%%%%DATADIR%%/red/rlsl.b
987
%%PSL%%%%DATADIR%%/red/rlslv.b
988
%%PSL%%%%DATADIR%%/red/rltools.b
989
%%PSL%%%%DATADIR%%/red/rmsubs.b
990
%%PSL%%%%DATADIR%%/red/rnelem.b
991
%%PSL%%%%DATADIR%%/red/rootaux.b
992
%%PSL%%%%DATADIR%%/red/roots.b
993
%%PSL%%%%DATADIR%%/red/roots2.b
994
%%PSL%%%%DATADIR%%/red/rounded.b
995
%%PSL%%%%DATADIR%%/red/rprint.b
996
%%PSL%%%%DATADIR%%/red/rsolve.b
997
%%PSL%%%%DATADIR%%/red/rsupport.b
998
%%PSL%%%%DATADIR%%/red/rtrace.b
999
%%PSL%%%%DATADIR%%/red/rubi_parse.b
1000
%%PSL%%%%DATADIR%%/red/rubi_red.b
1001
%%PSL%%%%DATADIR%%/red/rubi_rul_s.lap
1002
%%PSL%%%%DATADIR%%/red/rubi_rules.b
1003
%%PSL%%%%DATADIR%%/red/rungeku.b
1004
%%PSL%%%%DATADIR%%/red/rvector.b
1005
%%PSL%%%%DATADIR%%/red/scope.b
1006
%%PSL%%%%DATADIR%%/red/scripts.b
1007
%%PSL%%%%DATADIR%%/red/segmnt.b
1008
%%PSL%%%%DATADIR%%/red/sets.b
1009
%%PSL%%%%DATADIR%%/red/sfairy.b
1010
%%PSL%%%%DATADIR%%/red/sfbdata.b
1011
%%PSL%%%%DATADIR%%/red/sfbern.b
1012
%%PSL%%%%DATADIR%%/red/sfbes.b
1013
%%PSL%%%%DATADIR%%/red/sfbinom.b
1014
%%PSL%%%%DATADIR%%/red/sfconsts.b
1015
%%PSL%%%%DATADIR%%/red/sfellip.b
1016
%%PSL%%%%DATADIR%%/red/sfellipi.b
1017
%%PSL%%%%DATADIR%%/red/sfgamm.b
1018
%%PSL%%%%DATADIR%%/red/sfgamma.b
1019
%%PSL%%%%DATADIR%%/red/sfgen.b
1020
%%PSL%%%%DATADIR%%/red/sfigamma.b
1021
%%PSL%%%%DATADIR%%/red/sfint.b
1022
%%PSL%%%%DATADIR%%/red/sfkummer.b
1023
%%PSL%%%%DATADIR%%/red/sfother.b
1024
%%PSL%%%%DATADIR%%/red/sfpolys.b
1025
%%PSL%%%%DATADIR%%/red/sfpsi.b
1026
%%PSL%%%%DATADIR%%/red/sfsums.b
1027
%%PSL%%%%DATADIR%%/red/sfto.b
1028
%%PSL%%%%DATADIR%%/red/sftoresultant.b
1029
%%PSL%%%%DATADIR%%/red/showrule.b
1030
%%PSL%%%%DATADIR%%/red/simp.b
1031
%%PSL%%%%DATADIR%%/red/simp4.b
1032
%%PSL%%%%DATADIR%%/red/simpfact.b
1033
%%PSL%%%%DATADIR%%/red/simplede.b
1034
%%PSL%%%%DATADIR%%/red/simplex.b
1035
%%PSL%%%%DATADIR%%/red/simplog.b
1036
%%PSL%%%%DATADIR%%/red/simpsqrt.b
1037
%%PSL%%%%DATADIR%%/red/sl2psl.b
1038
%%PSL%%%%DATADIR%%/red/slfns.b
1039
%%PSL%%%%DATADIR%%/red/smacro.b
1040
%%PSL%%%%DATADIR%%/red/smallmod.b
1041
%%PSL%%%%DATADIR%%/red/smithex.b
1042
%%PSL%%%%DATADIR%%/red/smithex1.b
1043
%%PSL%%%%DATADIR%%/red/smlbflot.b
1044
%%PSL%%%%DATADIR%%/red/smt.b
1045
%%PSL%%%%DATADIR%%/red/smtread.b
1046
%%PSL%%%%DATADIR%%/red/solve.b
1047
%%PSL%%%%DATADIR%%/red/solve1.b
1048
%%PSL%%%%DATADIR%%/red/solvealg.b
1049
%%PSL%%%%DATADIR%%/red/solvelnr.b
1050
%%PSL%%%%DATADIR%%/red/solvetab.b
1051
%%PSL%%%%DATADIR%%/red/sort.b
1052
%%PSL%%%%DATADIR%%/red/spaces.b
1053
%%PSL%%%%DATADIR%%/red/sparse.b
1054
%%PSL%%%%DATADIR%%/red/sparsmat.b
1055
%%PSL%%%%DATADIR%%/red/spcfnint.b
1056
%%PSL%%%%DATADIR%%/red/spchlsky.b
1057
%%PSL%%%%DATADIR%%/red/spde.b
1058
%%PSL%%%%DATADIR%%/red/specbess.b
1059
%%PSL%%%%DATADIR%%/red/specfac.b
1060
%%PSL%%%%DATADIR%%/red/specfaux.b
1061
%%PSL%%%%DATADIR%%/red/specfn.b
1062
%%PSL%%%%DATADIR%%/red/specfn2.b
1063
%%PSL%%%%DATADIR%%/red/spgrmshm.b
1064
%%PSL%%%%DATADIR%%/red/splinalg.b
1065
%%PSL%%%%DATADIR%%/red/spludcmp.b
1066
%%PSL%%%%DATADIR%%/red/spmateig.b
1067
%%PSL%%%%DATADIR%%/red/spsvd.b
1068
%%PSL%%%%DATADIR%%/red/sqfrnorm.b
1069
%%PSL%%%%DATADIR%%/red/sqprint.b
1070
%%PSL%%%%DATADIR%%/red/sqrtf.b
1071
%%PSL%%%%DATADIR%%/red/statmisc.b
1072
%%PSL%%%%DATADIR%%/red/steepstd.b
1073
%%PSL%%%%DATADIR%%/red/str.b
1074
%%PSL%%%%DATADIR%%/red/struct4.b
1075
%%PSL%%%%DATADIR%%/red/sub.b
1076
%%PSL%%%%DATADIR%%/red/subs2q.b
1077
%%PSL%%%%DATADIR%%/red/subs3q.b
1078
%%PSL%%%%DATADIR%%/red/subs4q.b
1079
%%PSL%%%%DATADIR%%/red/substexp.b
1080
%%PSL%%%%DATADIR%%/red/substns.b
1081
%%PSL%%%%DATADIR%%/red/sum.b
1082
%%PSL%%%%DATADIR%%/red/sum2.b
1083
%%PSL%%%%DATADIR%%/red/superv.b
1084
%%PSL%%%%DATADIR%%/red/supervf.b
1085
%%PSL%%%%DATADIR%%/red/support.b
1086
%%PSL%%%%DATADIR%%/red/susy2.b
1087
%%PSL%%%%DATADIR%%/red/svd.b
1088
%%PSL%%%%DATADIR%%/red/switch.b
1089
%%PSL%%%%DATADIR%%/red/switchxt.b
1090
%%PSL%%%%DATADIR%%/red/symatvec.b
1091
%%PSL%%%%DATADIR%%/red/symaux.b
1092
%%PSL%%%%DATADIR%%/red/symcheck.b
1093
%%PSL%%%%DATADIR%%/red/symchrep.b
1094
%%PSL%%%%DATADIR%%/red/symdata1.b
1095
%%PSL%%%%DATADIR%%/red/symdata2.b
1096
%%PSL%%%%DATADIR%%/red/symhandl.b
1097
%%PSL%%%%DATADIR%%/red/symint.b
1098
%%PSL%%%%DATADIR%%/red/symmetry.b
1099
%%PSL%%%%DATADIR%%/red/sympatch.b
1100
%%PSL%%%%DATADIR%%/red/symwork.b
1101
%%PSL%%%%DATADIR%%/red/systems.b
1102
%%PSL%%%%DATADIR%%/red/table1.b
1103
%%PSL%%%%DATADIR%%/red/table2.b
1104
%%PSL%%%%DATADIR%%/red/table3.b
1105
%%PSL%%%%DATADIR%%/red/tableaux.b
1106
%%PSL%%%%DATADIR%%/red/tables.b
1107
%%PSL%%%%DATADIR%%/red/tadjoint.b
1108
%%PSL%%%%DATADIR%%/red/talp.b
1109
%%PSL%%%%DATADIR%%/red/talpbnf.b
1110
%%PSL%%%%DATADIR%%/red/talpmisc.b
1111
%%PSL%%%%DATADIR%%/red/talpqe.b
1112
%%PSL%%%%DATADIR%%/red/talpsiat.b
1113
%%PSL%%%%DATADIR%%/red/talpsism.b
1114
%%PSL%%%%DATADIR%%/red/taybasic.b
1115
%%PSL%%%%DATADIR%%/red/tayconv.b
1116
%%PSL%%%%DATADIR%%/red/taydiff.b
1117
%%PSL%%%%DATADIR%%/red/tayexpnd.b
1118
%%PSL%%%%DATADIR%%/red/tayfns.b
1119
%%PSL%%%%DATADIR%%/red/tayfront.b
1120
%%PSL%%%%DATADIR%%/red/tayimpl.b
1121
%%PSL%%%%DATADIR%%/red/tayintrf.b
1122
%%PSL%%%%DATADIR%%/red/tayintro.b
1123
%%PSL%%%%DATADIR%%/red/taylor.b
1124
%%PSL%%%%DATADIR%%/red/taypart.b
1125
%%PSL%%%%DATADIR%%/red/tayprint.b
1126
%%PSL%%%%DATADIR%%/red/tayrevrt.b
1127
%%PSL%%%%DATADIR%%/red/taysimp.b
1128
%%PSL%%%%DATADIR%%/red/taysubst.b
1129
%%PSL%%%%DATADIR%%/red/tayutils.b
1130
%%PSL%%%%DATADIR%%/red/tdconv.b
1131
%%PSL%%%%DATADIR%%/red/templt.b
1132
%%PSL%%%%DATADIR%%/red/tensor.b
1133
%%PSL%%%%DATADIR%%/red/tensor1.b
1134
%%PSL%%%%DATADIR%%/red/tensorio.b
1135
%%PSL%%%%DATADIR%%/red/tidysqrt.b
1136
%%PSL%%%%DATADIR%%/red/tmprint.b
1137
%%PSL%%%%DATADIR%%/red/tok.b
1138
%%PSL%%%%DATADIR%%/red/tools.b
1139
%%PSL%%%%DATADIR%%/red/tools21.b
1140
%%PSL%%%%DATADIR%%/red/torder.b
1141
%%PSL%%%%DATADIR%%/red/torsionb.b
1142
%%PSL%%%%DATADIR%%/red/tower.b
1143
%%PSL%%%%DATADIR%%/red/tps.b
1144
%%PSL%%%%DATADIR%%/red/tpscomp.b
1145
%%PSL%%%%DATADIR%%/red/tpsconv.b
1146
%%PSL%%%%DATADIR%%/red/tpsdom.b
1147
%%PSL%%%%DATADIR%%/red/tpseval.b
1148
%%PSL%%%%DATADIR%%/red/tpsfns.b
1149
%%PSL%%%%DATADIR%%/red/tpsmisc.b
1150
%%PSL%%%%DATADIR%%/red/tpsrev.b
1151
%%PSL%%%%DATADIR%%/red/tpssum.b
1152
%%PSL%%%%DATADIR%%/red/tr_gsmp1.lap
1153
%%PSL%%%%DATADIR%%/red/transfns.b
1154
%%PSL%%%%DATADIR%%/red/transfrm.b
1155
%%PSL%%%%DATADIR%%/red/traverso.b
1156
%%PSL%%%%DATADIR%%/red/trcase.b
1157
%%PSL%%%%DATADIR%%/red/tri.b
1158
%%PSL%%%%DATADIR%%/red/trialdiv.b
1159
%%PSL%%%%DATADIR%%/red/triang.b
1160
%%PSL%%%%DATADIR%%/red/trigint.b
1161
%%PSL%%%%DATADIR%%/red/trigsimp.b
1162
%%PSL%%%%DATADIR%%/red/trigsmp1.b
1163
%%PSL%%%%DATADIR%%/red/trigsmp2.b
1164
%%PSL%%%%DATADIR%%/red/turtle.b
1165
%%PSL%%%%DATADIR%%/red/unify.b
1166
%%PSL%%%%DATADIR%%/red/unihens.b
1167
%%PSL%%%%DATADIR%%/red/utf8.b
1168
%%PSL%%%%DATADIR%%/red/utils.b
1169
%%PSL%%%%DATADIR%%/red/v3tools.b
1170
%%PSL%%%%DATADIR%%/red/vardf.b
1171
%%PSL%%%%DATADIR%%/red/vdp2dip.b
1172
%%PSL%%%%DATADIR%%/red/vdpcom.b
1173
%%PSL%%%%DATADIR%%/red/vecanlys.b
1174
%%PSL%%%%DATADIR%%/red/vecpoly.b
1175
%%PSL%%%%DATADIR%%/red/vect.b
1176
%%PSL%%%%DATADIR%%/red/vectorop.b
1177
%%PSL%%%%DATADIR%%/red/wedge.b
1178
%%PSL%%%%DATADIR%%/red/weight.b
1179
%%PSL%%%%DATADIR%%/red/where.b
1180
%%PSL%%%%DATADIR%%/red/wstrass.b
1181
%%PSL%%%%DATADIR%%/red/wu.b
1182
%%PSL%%%%DATADIR%%/red/xaux.b
1183
%%PSL%%%%DATADIR%%/red/xcolor.b
1184
%%PSL%%%%DATADIR%%/red/xcrit.b
1185
%%PSL%%%%DATADIR%%/red/xexcalc.b
1186
%%PSL%%%%DATADIR%%/red/xgroeb.b
1187
%%PSL%%%%DATADIR%%/red/xideal.b
1188
%%PSL%%%%DATADIR%%/red/xpowers.b
1189
%%PSL%%%%DATADIR%%/red/xread.b
1190
%%PSL%%%%DATADIR%%/red/xreduct.b
1191
%%PSL%%%%DATADIR%%/red/xstorage.b
1192
%%PSL%%%%DATADIR%%/red/xvect.b
1193
%%PSL%%%%DATADIR%%/red/yylex.b
1194
%%PSL%%%%DATADIR%%/red/yyparse.b
1195
%%PSL%%%%DATADIR%%/red/zeilberg.b
1196
%%PSL%%%%DATADIR%%/red/zfactor.b
1197
%%PSL%%%%DATADIR%%/red/zmodule.b
1198
%%PSL%%%%DATADIR%%/red/ztrans.b
1199
%%PSL%%%%DATADIR%%/red/ztrrul_s.lap
1200
%%PSL%%%%DATADIR%%/red/ztrrules.b
1201
%%PSL%%@dir red
1202
%%DOCSDIR%%/manual.pdf
1203
%%DOCSDIR%%/primer.pdf
1204
%%DOCSDIR%%/insidereduce.pdf
1205
%%DOCSDIR%%/sl.pdf

Return to bug 199910