diff options
author | stephen <stephen@FreeBSD.org> | 2015-05-05 01:48:08 +0800 |
---|---|---|
committer | stephen <stephen@FreeBSD.org> | 2015-05-05 01:48:08 +0800 |
commit | 7a22134d7ff361efecf7c259370772c25843d14b (patch) | |
tree | 5d6e12fcdc5b94b845a00a82132f26900140d901 /math/reduce | |
parent | 4b49cdc121f352694daf68ffe945bf8e07946744 (diff) | |
download | freebsd-ports-gnome-7a22134d7ff361efecf7c259370772c25843d14b.tar.gz freebsd-ports-gnome-7a22134d7ff361efecf7c259370772c25843d14b.tar.zst freebsd-ports-gnome-7a22134d7ff361efecf7c259370772c25843d14b.zip |
- Add PDF documentation.
- Add option to build PSL version (amd64 only).
PR: 199910
Submitted by: Pedro F. Giffuni <pfg@FreeBSD.org>
Diffstat (limited to 'math/reduce')
-rw-r--r-- | math/reduce/Makefile | 65 | ||||
-rw-r--r-- | math/reduce/files/redpsl.1 | 18 | ||||
-rw-r--r-- | math/reduce/files/runpsl.sh | 13 | ||||
-rw-r--r-- | math/reduce/pkg-plist | 1311 |
4 files changed, 1287 insertions, 120 deletions
diff --git a/math/reduce/Makefile b/math/reduce/Makefile index a46ff4b6aed0..0ff3a6fa35b6 100644 --- a/math/reduce/Makefile +++ b/math/reduce/Makefile @@ -8,50 +8,87 @@ MASTER_SITES= SF/${PORTNAME}-algebra/Snapshot_2014-11-30/ DISTNAME= ${PORTNAME}-src-2014-11-30 MAINTAINER= pfg@FreeBSD.org -COMMENT= Portable general-purpose computer algebra system (CSL version) +COMMENT= Portable general-purpose computer algebra system LICENSE= BSD2CLAUSE RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot -LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg \ - libpng.so:${PORTSDIR}/graphics/png \ - libtiff.so:${PORTSDIR}/graphics/tiff USES= autoreconf:build gmake tar:bzip2 -USE_XORG= xext x11 xft WRKSRC= ${WRKDIR}/${DISTNAME} -# Avoid GNU_CONFIGURE because it breaks staging +# Avoid GNU_CONFIGURE as it breaks staging HAS_CONFIGURE= yes -CONFIGURE_ARGS+= --with-csl ALL_TARGET= MAKE_JOBS_UNSAFE= yes +OPTIONS_SINGLE= SGLSP +OPTIONS_SINGLE_SGLSP= CSL PSL +CSL_DESC= Codemist Standard Lisp - redcsl (portable, X11) +PSL_DESC= Portable Standard Lisp - redpsl (fast, amd64 only) +OPTIONS_DEFAULT= CSL + +CSL_CONFIGURE_WITH= csl +PSL_CONFIGURE_WITH= psl +CSL_USE= xorg=x11,xext,xft +OPTIONS_SUB= yes + .include <bsd.port.options.mk> +.if ${PORT_OPTIONS:MCSL} +LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff +CPPFLAGS+= `freetype-config --cflags` +LDFLAGS+= `freetype-config --libs` +.else +ONLY_FOR_ARCHS= amd64 +.endif + .if ${ARCH} == "amd64" TARGET_SDIR= x86_64-unknown-${OPSYS:tl}${OSREL} .else TARGET_SDIR= ${ARCH}-unknown-${OPSYS:tl}${OSREL} .endif -REDUCECSL= ${WRKSRC}/cslbuild/${TARGET_SDIR}/csl -CPPFLAGS+= `freetype-config --cflags` -LDFLAGS+= `freetype-config --libs` +.if ${PORT_OPTIONS:MCSL} +REDUCE_BINS= ${WRKSRC}/cslbuild/${TARGET_SDIR} +.else +REDUCE_BINS= ${WRKSRC}/pslbuild/${TARGET_SDIR} +.endif do-install: ${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_PROGRAM} ${REDUCECSL}/reduce ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${REDUCECSL}/reduce.img ${STAGEDIR}${DATADIR} +.if ${PORT_OPTIONS:MCSL} + ${INSTALL_DATA} ${REDUCE_BINS}/csl/reduce.img ${STAGEDIR}${DATADIR} + ${INSTALL_PROGRAM} ${REDUCE_BINS}/csl/reduce ${STAGEDIR}${DATADIR} ${INSTALL_SCRIPT} ${FILESDIR}/runcsl.sh ${STAGEDIR}${PREFIX}/bin/redcsl ${INSTALL_MAN} ${FILESDIR}/redcsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/ ${MKDIR} ${STAGEDIR}${DATADIR}/reduce.doc - (cd ${REDUCECSL}/reduce.doc && ${COPYTREE_SHARE} . \ + (cd ${REDUCE_BINS}/csl/reduce.doc && ${COPYTREE_SHARE} . \ ${STAGEDIR}${DATADIR}/reduce.doc) ${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR} - (cd ${REDUCECSL}/reduce.fonts && ${COPYTREE_SHARE} . \ + (cd ${REDUCE_BINS}/csl/reduce.fonts && ${COPYTREE_SHARE} . \ ${STAGEDIR}${DATADIR}/reduce.fonts) +.else + ${INSTALL_SCRIPT} ${FILESDIR}/runpsl.sh ${STAGEDIR}${PREFIX}/bin/redpsl + ${INSTALL_MAN} ${FILESDIR}/redpsl.1 ${STAGEDIR}${MANPREFIX}/man/man1/ + ${MKDIR} ${STAGEDIR}${DATADIR}/psl + ${INSTALL_PROGRAM} ${REDUCE_BINS}/psl/bpsl ${STAGEDIR}${DATADIR}/psl/ + (cd ${REDUCE_BINS}/psl && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${DATADIR}/psl "! -name bpsl") + ${MKDIR} ${STAGEDIR}${PREFIX}/red + (cd ${REDUCE_BINS}/red && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${DATADIR}/red) +.endif +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/manual/manual.pdf\ + ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/primers/*.pdf \ + ${STAGEDIR}${DOCSDIR} +.endif .include <bsd.port.mk> diff --git a/math/reduce/files/redpsl.1 b/math/reduce/files/redpsl.1 new file mode 100644 index 000000000000..a4966d46b626 --- /dev/null +++ b/math/reduce/files/redpsl.1 @@ -0,0 +1,18 @@ +.TH REDPSL 1 "2010 October 10" "redpsl" +. +. +.SH NAME +redpsl \- Run REDUCE under PSL +. +. +.SH Synopsis +.B redpsl +. +. +.SH DESCRIPTION +.I redpsl +runs REDUCE based on the +.BR PSL +Lisp system. +. +. diff --git a/math/reduce/files/runpsl.sh b/math/reduce/files/runpsl.sh new file mode 100644 index 000000000000..a05817a6d572 --- /dev/null +++ b/math/reduce/files/runpsl.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +case `uname -m` in +amd64) + STORE=2000 + ;; +esac + +bin="/usr/local/share/reduce/psl/bpsl" +img="/usr/local/share/reduce/red/reduce.img" + +exec $bin -td $STORE -f $img $* + diff --git a/math/reduce/pkg-plist b/math/reduce/pkg-plist index 507fed697d8e..a65271fc3f3f 100644 --- a/math/reduce/pkg-plist +++ b/math/reduce/pkg-plist @@ -1,106 +1,1205 @@ -bin/redcsl -man/man1/redcsl.1.gz -%%DATADIR%%/reduce -%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt -%%DATADIR%%/reduce.doc/BSD-LICENSE.txt -%%DATADIR%%/reduce.doc/LGPL-2.1.txt -%%DATADIR%%/reduce.doc/abstract.tex -%%DATADIR%%/reduce.doc/acknowl.tex -%%DATADIR%%/reduce.doc/appenda.tex -%%DATADIR%%/reduce.doc/aprop.tex -%%DATADIR%%/reduce.doc/cfrac.tex -%%DATADIR%%/reduce.doc/command.tex -%%DATADIR%%/reduce.doc/convert.tex -%%DATADIR%%/reduce.doc/exprn.tex -%%DATADIR%%/reduce.doc/header.tex -%%DATADIR%%/reduce.doc/hephys.tex -%%DATADIR%%/reduce.doc/heugcd.tex -%%DATADIR%%/reduce.doc/index.html -%%DATADIR%%/reduce.doc/inter.tex -%%DATADIR%%/reduce.doc/intro.tex -%%DATADIR%%/reduce.doc/io.tex -%%DATADIR%%/reduce.doc/list.tex -%%DATADIR%%/reduce.doc/macros.tex -%%DATADIR%%/reduce.doc/maintain.tex -%%DATADIR%%/reduce.doc/manual.tex -%%DATADIR%%/reduce.doc/map.tex -%%DATADIR%%/reduce.doc/matrix.tex -%%DATADIR%%/reduce.doc/oper.tex -%%DATADIR%%/reduce.doc/oper2.tex -%%DATADIR%%/reduce.doc/polyrat.tex -%%DATADIR%%/reduce.doc/proc.tex -%%DATADIR%%/reduce.doc/progstr.tex -%%DATADIR%%/reduce.doc/r38_0001.html -%%DATADIR%%/reduce.doc/r38_0050.html -%%DATADIR%%/reduce.doc/r38_0100.html -%%DATADIR%%/reduce.doc/r38_0150.html -%%DATADIR%%/reduce.doc/r38_0200.html -%%DATADIR%%/reduce.doc/r38_0250.html -%%DATADIR%%/reduce.doc/r38_0300.html -%%DATADIR%%/reduce.doc/r38_0350.html -%%DATADIR%%/reduce.doc/r38_0400.html -%%DATADIR%%/reduce.doc/r38_0450.html -%%DATADIR%%/reduce.doc/r38_0500.html -%%DATADIR%%/reduce.doc/r38_0550.html -%%DATADIR%%/reduce.doc/r38_0600.html -%%DATADIR%%/reduce.doc/r38_0650.html -%%DATADIR%%/reduce.doc/r38_idx.html -%%DATADIR%%/reduce.doc/redlogo.gif -%%DATADIR%%/reduce.doc/rememb.tex -%%DATADIR%%/reduce.doc/rest.tex -%%DATADIR%%/reduce.doc/rlisp88.tex -%%DATADIR%%/reduce.doc/rlispref.tex -%%DATADIR%%/reduce.doc/solve.tex -%%DATADIR%%/reduce.doc/statemnt.tex -%%DATADIR%%/reduce.doc/structr.tex -%%DATADIR%%/reduce.doc/subst.tex -%%DATADIR%%/reduce.doc/symbolic.tex -%%DATADIR%%/reduce.doc/title.tex -%%DATADIR%%/reduce.doc/util.tex -%%DATADIR%%/reduce.fonts/README -%%DATADIR%%/reduce.fonts/README.BaKoMa -%%DATADIR%%/reduce.fonts/README.cmps-fonts -%%DATADIR%%/reduce.fonts/cmex10.pfa -%%DATADIR%%/reduce.fonts/cmex10.pfb -%%DATADIR%%/reduce.fonts/cmex10.ttf -%%DATADIR%%/reduce.fonts/cmex7.ttf -%%DATADIR%%/reduce.fonts/cmex8.ttf -%%DATADIR%%/reduce.fonts/cmex9.ttf -%%DATADIR%%/reduce.fonts/cmmi10.pfa -%%DATADIR%%/reduce.fonts/cmmi10.pfb -%%DATADIR%%/reduce.fonts/cmmi10.ttf -%%DATADIR%%/reduce.fonts/cmmi12.ttf -%%DATADIR%%/reduce.fonts/cmmi5.ttf -%%DATADIR%%/reduce.fonts/cmmi6.ttf -%%DATADIR%%/reduce.fonts/cmmi7.ttf -%%DATADIR%%/reduce.fonts/cmmi8.ttf -%%DATADIR%%/reduce.fonts/cmmi9.ttf -%%DATADIR%%/reduce.fonts/cmr10.pfa -%%DATADIR%%/reduce.fonts/cmr10.pfb -%%DATADIR%%/reduce.fonts/cmr10.ttf -%%DATADIR%%/reduce.fonts/cmr12.ttf -%%DATADIR%%/reduce.fonts/cmr17.ttf -%%DATADIR%%/reduce.fonts/cmr5.ttf -%%DATADIR%%/reduce.fonts/cmr6.ttf -%%DATADIR%%/reduce.fonts/cmr7.ttf -%%DATADIR%%/reduce.fonts/cmr8.ttf -%%DATADIR%%/reduce.fonts/cmr9.ttf -%%DATADIR%%/reduce.fonts/cmsy10.pfa -%%DATADIR%%/reduce.fonts/cmsy10.pfb -%%DATADIR%%/reduce.fonts/cmsy10.ttf -%%DATADIR%%/reduce.fonts/cmsy5.ttf -%%DATADIR%%/reduce.fonts/cmsy6.ttf -%%DATADIR%%/reduce.fonts/cmsy7.ttf -%%DATADIR%%/reduce.fonts/cmsy8.ttf -%%DATADIR%%/reduce.fonts/cmsy9.ttf -%%DATADIR%%/reduce.fonts/fonts.dir -%%DATADIR%%/reduce.fonts/fonts.scale -%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm -%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm -%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm -%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm -%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz -%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz -%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz -%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz -%%DATADIR%%/reduce.img +%%CSL%%bin/redcsl +%%CSL%%man/man1/redcsl.1.gz +%%CSL%%%%DATADIR%%/reduce +%%CSL%%%%DATADIR%%/reduce.doc/BINARY-LICENSE.txt +%%CSL%%%%DATADIR%%/reduce.doc/BSD-LICENSE.txt +%%CSL%%%%DATADIR%%/reduce.doc/LGPL-2.1.txt +%%CSL%%%%DATADIR%%/reduce.doc/abstract.tex +%%CSL%%%%DATADIR%%/reduce.doc/acknowl.tex +%%CSL%%%%DATADIR%%/reduce.doc/appenda.tex +%%CSL%%%%DATADIR%%/reduce.doc/aprop.tex +%%CSL%%%%DATADIR%%/reduce.doc/cfrac.tex +%%CSL%%%%DATADIR%%/reduce.doc/command.tex +%%CSL%%%%DATADIR%%/reduce.doc/convert.tex +%%CSL%%%%DATADIR%%/reduce.doc/exprn.tex +%%CSL%%%%DATADIR%%/reduce.doc/header.tex +%%CSL%%%%DATADIR%%/reduce.doc/hephys.tex +%%CSL%%%%DATADIR%%/reduce.doc/heugcd.tex +%%CSL%%%%DATADIR%%/reduce.doc/index.html +%%CSL%%%%DATADIR%%/reduce.doc/inter.tex +%%CSL%%%%DATADIR%%/reduce.doc/intro.tex +%%CSL%%%%DATADIR%%/reduce.doc/io.tex +%%CSL%%%%DATADIR%%/reduce.doc/list.tex +%%CSL%%%%DATADIR%%/reduce.doc/macros.tex +%%CSL%%%%DATADIR%%/reduce.doc/maintain.tex +%%CSL%%%%DATADIR%%/reduce.doc/manual.tex +%%CSL%%%%DATADIR%%/reduce.doc/map.tex +%%CSL%%%%DATADIR%%/reduce.doc/matrix.tex +%%CSL%%%%DATADIR%%/reduce.doc/oper.tex +%%CSL%%%%DATADIR%%/reduce.doc/oper2.tex +%%CSL%%%%DATADIR%%/reduce.doc/polyrat.tex +%%CSL%%%%DATADIR%%/reduce.doc/proc.tex +%%CSL%%%%DATADIR%%/reduce.doc/progstr.tex +%%CSL%%%%DATADIR%%/reduce.doc/r38_0001.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0050.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0100.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0150.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0200.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0250.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0300.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0350.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0400.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0450.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0500.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0550.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0600.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_0650.html +%%CSL%%%%DATADIR%%/reduce.doc/r38_idx.html +%%CSL%%%%DATADIR%%/reduce.doc/redlogo.gif +%%CSL%%%%DATADIR%%/reduce.doc/rememb.tex +%%CSL%%%%DATADIR%%/reduce.doc/rest.tex +%%CSL%%%%DATADIR%%/reduce.doc/rlisp88.tex +%%CSL%%%%DATADIR%%/reduce.doc/rlispref.tex +%%CSL%%%%DATADIR%%/reduce.doc/solve.tex +%%CSL%%%%DATADIR%%/reduce.doc/statemnt.tex +%%CSL%%%%DATADIR%%/reduce.doc/structr.tex +%%CSL%%%%DATADIR%%/reduce.doc/subst.tex +%%CSL%%%%DATADIR%%/reduce.doc/symbolic.tex +%%CSL%%%%DATADIR%%/reduce.doc/title.tex +%%CSL%%%%DATADIR%%/reduce.doc/util.tex +%%CSL%%%%DATADIR%%/reduce.fonts/README +%%CSL%%%%DATADIR%%/reduce.fonts/README.BaKoMa +%%CSL%%%%DATADIR%%/reduce.fonts/README.cmps-fonts +%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.pfa +%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.pfb +%%CSL%%%%DATADIR%%/reduce.fonts/cmex10.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmex7.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmex8.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmex9.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.pfa +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.pfb +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi10.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi12.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi5.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi6.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi7.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi8.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmmi9.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.pfa +%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.pfb +%%CSL%%%%DATADIR%%/reduce.fonts/cmr10.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr12.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr17.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr5.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr6.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr7.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr8.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmr9.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.pfa +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.pfb +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy10.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy5.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy6.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy7.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy8.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/cmsy9.ttf +%%CSL%%%%DATADIR%%/reduce.fonts/fonts.dir +%%CSL%%%%DATADIR%%/reduce.fonts/fonts.scale +%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmex10.pfm +%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmmi10.pfm +%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmr10.pfm +%%CSL%%%%DATADIR%%/reduce.fonts/pfmfiles/cmsy10.pfm +%%CSL%%%%DATADIR%%/reduce.fonts/src/cmex10.asm.gz +%%CSL%%%%DATADIR%%/reduce.fonts/src/cmmi10.asm.gz +%%CSL%%%%DATADIR%%/reduce.fonts/src/cmr10.asm.gz +%%CSL%%%%DATADIR%%/reduce.fonts/src/cmsy10.asm.gz +%%CSL%%%%DATADIR%%/reduce.img +%%PSL%%bin/redpsl +%%PSL%%man/man1/redpsl.1.gz +%%PSL%%%%DATADIR%%/psl/386-ext.b +%%PSL%%%%DATADIR%%/psl/64 +%%PSL%%%%DATADIR%%/psl/AMD64-cmac.b +%%PSL%%%%DATADIR%%/psl/AMD64-comp.b +%%PSL%%%%DATADIR%%/psl/AMD64-lap.b +%%PSL%%%%DATADIR%%/psl/AMD64-spec.b +%%PSL%%%%DATADIR%%/psl/addr2id.b +%%PSL%%%%DATADIR%%/psl/allocators.b +%%PSL%%%%DATADIR%%/psl/apply-lap.b +%%PSL%%%%DATADIR%%/psl/arithmetic.b +%%PSL%%%%DATADIR%%/psl/association.b +%%PSL%%%%DATADIR%%/psl/autoload-tr.b +%%PSL%%%%DATADIR%%/psl/autoload.b +%%PSL%%%%DATADIR%%/psl/backquote.b +%%PSL%%%%DATADIR%%/psl/backtrace.b +%%PSL%%%%DATADIR%%/psl/base-io.b +%%PSL%%%%DATADIR%%/psl/big-faslend.b +%%PSL%%%%DATADIR%%/psl/big.b +%%PSL%%%%DATADIR%%/psl/bind-macros.b +%%PSL%%%%DATADIR%%/psl/binding.b +%%PSL%%%%DATADIR%%/psl/bpsl +%%PSL%%%%DATADIR%%/psl/break.b +%%PSL%%%%DATADIR%%/psl/build.b +%%PSL%%%%DATADIR%%/psl/c-template.b +%%PSL%%%%DATADIR%%/psl/carcdr.b +%%PSL%%%%DATADIR%%/psl/carcdrnil.b +%%PSL%%%%DATADIR%%/psl/catch-throw.b +%%PSL%%%%DATADIR%%/psl/char-io.b +%%PSL%%%%DATADIR%%/psl/char-macro.b +%%PSL%%%%DATADIR%%/psl/chars.b +%%PSL%%%%DATADIR%%/psl/clcomp.b +%%PSL%%%%DATADIR%%/psl/clcomp1.b +%%PSL%%%%DATADIR%%/psl/comasm.b +%%PSL%%%%DATADIR%%/psl/common.b +%%PSL%%%%DATADIR%%/psl/comp-decls.b +%%PSL%%%%DATADIR%%/psl/compat.b +%%PSL%%%%DATADIR%%/psl/compiler.b +%%PSL%%%%DATADIR%%/psl/compsupport.b +%%PSL%%%%DATADIR%%/psl/cond-macros.b +%%PSL%%%%DATADIR%%/psl/cons-mkvect.b +%%PSL%%%%DATADIR%%/psl/constants.b +%%PSL%%%%DATADIR%%/psl/cont-error.b +%%PSL%%%%DATADIR%%/psl/copiers.b +%%PSL%%%%DATADIR%%/psl/copying-gc.b +%%PSL%%%%DATADIR%%/psl/datamachine.b +%%PSL%%%%DATADIR%%/psl/debug.b +%%PSL%%%%DATADIR%%/psl/def-smacro.b +%%PSL%%%%DATADIR%%/psl/defconst.b +%%PSL%%%%DATADIR%%/psl/defmacro.b +%%PSL%%%%DATADIR%%/psl/defmacro1.b +%%PSL%%%%DATADIR%%/psl/defmacro2.b +%%PSL%%%%DATADIR%%/psl/defobject.b +%%PSL%%%%DATADIR%%/psl/disassemble.b +%%PSL%%%%DATADIR%%/psl/double.b +%%PSL%%%%DATADIR%%/psl/double32.b +%%PSL%%%%DATADIR%%/psl/dskin.b +%%PSL%%%%DATADIR%%/psl/dumplisp.b +%%PSL%%%%DATADIR%%/psl/easy-non-sl.b +%%PSL%%%%DATADIR%%/psl/easy-sl.b +%%PSL%%%%DATADIR%%/psl/environment.b +%%PSL%%%%DATADIR%%/psl/equal.b +%%PSL%%%%DATADIR%%/psl/error-eset.b +%%PSL%%%%DATADIR%%/psl/error-hand.b +%%PSL%%%%DATADIR%%/psl/eval-apply.b +%%PSL%%%%DATADIR%%/psl/eval-when.b +%%PSL%%%%DATADIR%%/psl/evalhook.b +%%PSL%%%%DATADIR%%/psl/explode-com.b +%%PSL%%%%DATADIR%%/psl/f-evectors.b +%%PSL%%%%DATADIR%%/psl/f-strings.b +%%PSL%%%%DATADIR%%/psl/f-vectors.b +%%PSL%%%%DATADIR%%/psl/fasl-decls.b +%%PSL%%%%DATADIR%%/psl/faslout.b +%%PSL%%%%DATADIR%%/psl/fast-chars.b +%%PSL%%%%DATADIR%%/psl/fast-int.b +%%PSL%%%%DATADIR%%/psl/fast-math.b +%%PSL%%%%DATADIR%%/psl/fast-vector.b +%%PSL%%%%DATADIR%%/psl/fc-indirect.b +%%PSL%%%%DATADIR%%/psl/fcomp.b +%%PSL%%%%DATADIR%%/psl/find.b +%%PSL%%%%DATADIR%%/psl/fixup.b +%%PSL%%%%DATADIR%%/psl/fluid-globl.b +%%PSL%%%%DATADIR%%/psl/for-macro.b +%%PSL%%%%DATADIR%%/psl/funct-prims.b +%%PSL%%%%DATADIR%%/psl/get-options.b +%%PSL%%%%DATADIR%%/psl/gsort.b +%%PSL%%%%DATADIR%%/psl/hash-decls.b +%%PSL%%%%DATADIR%%/psl/hcons.b +%%PSL%%%%DATADIR%%/psl/helferlein.b +%%PSL%%%%DATADIR%%/psl/if-system.b +%%PSL%%%%DATADIR%%/psl/if.b +%%PSL%%%%DATADIR%%/psl/init-file.b +%%PSL%%%%DATADIR%%/psl/inum.b +%%PSL%%%%DATADIR%%/psl/io-data.b +%%PSL%%%%DATADIR%%/psl/io-decls.b +%%PSL%%%%DATADIR%%/psl/io-errors.b +%%PSL%%%%DATADIR%%/psl/io-extens.b +%%PSL%%%%DATADIR%%/psl/iter-macros.b +%%PSL%%%%DATADIR%%/psl/knowntocomp.b +%%PSL%%%%DATADIR%%/psl/l2cdatacon.b +%%PSL%%%%DATADIR%%/psl/lap-to-asm.b +%%PSL%%%%DATADIR%%/psl/lap.b +%%PSL%%%%DATADIR%%/psl/lisp-macros.b +%%PSL%%%%DATADIR%%/psl/load-psl.b +%%PSL%%%%DATADIR%%/psl/load.b +%%PSL%%%%DATADIR%%/psl/loop-macros.b +%%PSL%%%%DATADIR%%/psl/macroexpand.b +%%PSL%%%%DATADIR%%/psl/mathlib.b +%%PSL%%%%DATADIR%%/psl/mbarith.b +%%PSL%%%%DATADIR%%/psl/merge-sort.b +%%PSL%%%%DATADIR%%/psl/misc-macros.b +%%PSL%%%%DATADIR%%/psl/mstruct.b +%%PSL%%%%DATADIR%%/psl/muls.b +%%PSL%%%%DATADIR%%/psl/muls32.b +%%PSL%%%%DATADIR%%/psl/nbarith.b +%%PSL%%%%DATADIR%%/psl/nbig.b +%%PSL%%%%DATADIR%%/psl/nbig0.b +%%PSL%%%%DATADIR%%/psl/nbig30.b +%%PSL%%%%DATADIR%%/psl/nbig30a.b +%%PSL%%%%DATADIR%%/psl/nbig32.b +%%PSL%%%%DATADIR%%/psl/nbig32a.b +%%PSL%%%%DATADIR%%/psl/nbittab.b +%%PSL%%%%DATADIR%%/psl/nstruct.b +%%PSL%%%%DATADIR%%/psl/numeric-ops.b +%%PSL%%%%DATADIR%%/psl/obj-const.b +%%PSL%%%%DATADIR%%/psl/obj-dflavor.b +%%PSL%%%%DATADIR%%/psl/obj-dmethod.b +%%PSL%%%%DATADIR%%/psl/obj-hash.b +%%PSL%%%%DATADIR%%/psl/obj-lib.b +%%PSL%%%%DATADIR%%/psl/obj-send.b +%%PSL%%%%DATADIR%%/psl/objects.b +%%PSL%%%%DATADIR%%/psl/objinstance.b +%%PSL%%%%DATADIR%%/psl/oblist.b +%%PSL%%%%DATADIR%%/psl/onoff.b +%%PSL%%%%DATADIR%%/psl/open-close.b +%%PSL%%%%DATADIR%%/psl/other-io.b +%%PSL%%%%DATADIR%%/psl/others-sl.b +%%PSL%%%%DATADIR%%/psl/p1-decls.b +%%PSL%%%%DATADIR%%/psl/pass-1-lap.b +%%PSL%%%%DATADIR%%/psl/pass-1.b +%%PSL%%%%DATADIR%%/psl/pass-2-3.b +%%PSL%%%%DATADIR%%/psl/pipes.b +%%PSL%%%%DATADIR%%/psl/pp-file.b +%%PSL%%%%DATADIR%%/psl/pp-lisp.b +%%PSL%%%%DATADIR%%/psl/pp.b +%%PSL%%%%DATADIR%%/psl/printers.b +%%PSL%%%%DATADIR%%/psl/printf.b +%%PSL%%%%DATADIR%%/psl/prog-friend.b +%%PSL%%%%DATADIR%%/psl/prop-list.b +%%PSL%%%%DATADIR%%/psl/pslcomp.b +%%PSL%%%%DATADIR%%/psl/pslcompat.b +%%PSL%%%%DATADIR%%/psl/putd-getd.b +%%PSL%%%%DATADIR%%/psl/putprint.b +%%PSL%%%%DATADIR%%/psl/pvm.b +%%PSL%%%%DATADIR%%/psl/qualified-timing.b +%%PSL%%%%DATADIR%%/psl/rds-wrs.b +%%PSL%%%%DATADIR%%/psl/read-macros.b +%%PSL%%%%DATADIR%%/psl/read-utils.b +%%PSL%%%%DATADIR%%/psl/read.b +%%PSL%%%%DATADIR%%/psl/read1macros.b +%%PSL%%%%DATADIR%%/psl/read2macros.b +%%PSL%%%%DATADIR%%/psl/rprint.b +%%PSL%%%%DATADIR%%/psl/s-strings.b +%%PSL%%%%DATADIR%%/psl/s-vectors.b +%%PSL%%%%DATADIR%%/psl/scan-table.b +%%PSL%%%%DATADIR%%/psl/sequence.b +%%PSL%%%%DATADIR%%/psl/set-macros.b +%%PSL%%%%DATADIR%%/psl/set1-macros.b +%%PSL%%%%DATADIR%%/psl/set2-macros.b +%%PSL%%%%DATADIR%%/psl/sets.b +%%PSL%%%%DATADIR%%/psl/shmem.b +%%PSL%%%%DATADIR%%/psl/spy.b +%%PSL%%%%DATADIR%%/psl/static-gc.b +%%PSL%%%%DATADIR%%/psl/step.b +%%PSL%%%%DATADIR%%/psl/str-input.b +%%PSL%%%%DATADIR%%/psl/str-search.b +%%PSL%%%%DATADIR%%/psl/string-gen.b +%%PSL%%%%DATADIR%%/psl/strings.b +%%PSL%%%%DATADIR%%/psl/symbol-vals.b +%%PSL%%%%DATADIR%%/psl/symget.b +%%PSL%%%%DATADIR%%/psl/sys-consts.b +%%PSL%%%%DATADIR%%/psl/sys-date.b +%%PSL%%%%DATADIR%%/psl/sys-dm.b +%%PSL%%%%DATADIR%%/psl/sys-extras.b +%%PSL%%%%DATADIR%%/psl/sys-faslin.b +%%PSL%%%%DATADIR%%/psl/sys-gc.b +%%PSL%%%%DATADIR%%/psl/sys-io.b +%%PSL%%%%DATADIR%%/psl/sys-macros.b +%%PSL%%%%DATADIR%%/psl/syslisp-syn.b +%%PSL%%%%DATADIR%%/psl/syslisp.b +%%PSL%%%%DATADIR%%/psl/tags.b +%%PSL%%%%DATADIR%%/psl/timc.b +%%PSL%%%%DATADIR%%/psl/token-decls.b +%%PSL%%%%DATADIR%%/psl/token-scan.b +%%PSL%%%%DATADIR%%/psl/top-loop.b +%%PSL%%%%DATADIR%%/psl/trap.b +%%PSL%%%%DATADIR%%/psl/type-conver.b +%%PSL%%%%DATADIR%%/psl/type-error.b +%%PSL%%%%DATADIR%%/psl/unixAMD64-asm.b +%%PSL%%%%DATADIR%%/psl/useful.b +%%PSL%%%%DATADIR%%/psl/vector-fix.b +%%PSL%%%%DATADIR%%/psl/vectors.b +%%PSL%%%%DATADIR%%/psl/vfvect.b +%%PSL%%%%DATADIR%%/psl/wdeclare.b +%%PSL%%%%DATADIR%%/psl/wfloat.b +%%PSL%%%%DATADIR%%/psl/write-float.b +%%PSL%%%%DATADIR%%/psl/zbig.b +%%PSL%%%%DATADIR%%/red/_definta.lap +%%PSL%%%%DATADIR%%/red/_defintb.lap +%%PSL%%%%DATADIR%%/red/_definte.lap +%%PSL%%%%DATADIR%%/red/_defintf.lap +%%PSL%%%%DATADIR%%/red/_definti.lap +%%PSL%%%%DATADIR%%/red/_defintk.lap +%%PSL%%%%DATADIR%%/red/_susy2.lap +%%PSL%%%%DATADIR%%/red/a2dip.b +%%PSL%%%%DATADIR%%/red/acfsf.b +%%PSL%%%%DATADIR%%/red/acfsfbnf.b +%%PSL%%%%DATADIR%%/red/acfsfgs.b +%%PSL%%%%DATADIR%%/red/acfsfmisc.b +%%PSL%%%%DATADIR%%/red/acfsfqe.b +%%PSL%%%%DATADIR%%/red/acfsfsiat.b +%%PSL%%%%DATADIR%%/red/acfsfsism.b +%%PSL%%%%DATADIR%%/red/afactor.b +%%PSL%%%%DATADIR%%/red/alg-form.b +%%PSL%%%%DATADIR%%/red/alg.b +%%PSL%%%%DATADIR%%/red/algbool.b +%%PSL%%%%DATADIR%%/red/algdcl.b +%%PSL%%%%DATADIR%%/red/algfn.b +%%PSL%%%%DATADIR%%/red/algint.b +%%PSL%%%%DATADIR%%/red/allroot.b +%%PSL%%%%DATADIR%%/red/alphas.b +%%PSL%%%%DATADIR%%/red/antisubs.b +%%PSL%%%%DATADIR%%/red/applysym.b +%%PSL%%%%DATADIR%%/red/approx.b +%%PSL%%%%DATADIR%%/red/arinv.b +%%PSL%%%%DATADIR%%/red/arith.b +%%PSL%%%%DATADIR%%/red/arnum.b +%%PSL%%%%DATADIR%%/red/array.b +%%PSL%%%%DATADIR%%/red/assert.b +%%PSL%%%%DATADIR%%/red/assertcheckfn.b +%%PSL%%%%DATADIR%%/red/assertproc.b +%%PSL%%%%DATADIR%%/red/assist.b +%%PSL%%%%DATADIR%%/red/atensor.b +%%PSL%%%%DATADIR%%/red/auxitens.b +%%PSL%%%%DATADIR%%/red/avector.b +%%PSL%%%%DATADIR%%/red/backtrck.b +%%PSL%%%%DATADIR%%/red/baglist.b +%%PSL%%%%DATADIR%%/red/bareiss.b +%%PSL%%%%DATADIR%%/red/bas.b +%%PSL%%%%DATADIR%%/red/basis.b +%%PSL%%%%DATADIR%%/red/bcoeff.b +%%PSL%%%%DATADIR%%/red/bcsf.b +%%PSL%%%%DATADIR%%/red/bfauxil.b +%%PSL%%%%DATADIR%%/red/bfdoer.b +%%PSL%%%%DATADIR%%/red/bfdoer2.b +%%PSL%%%%DATADIR%%/red/bfelem.b +%%PSL%%%%DATADIR%%/red/bibasis.b +%%PSL%%%%DATADIR%%/red/bibasis_interface.b +%%PSL%%%%DATADIR%%/red/bibasis_involutive.b +%%PSL%%%%DATADIR%%/red/bibasis_janet_tree.b +%%PSL%%%%DATADIR%%/red/bibasis_monom.b +%%PSL%%%%DATADIR%%/red/bibasis_polynom.b +%%PSL%%%%DATADIR%%/red/bibasis_qset.b +%%PSL%%%%DATADIR%%/red/bibasis_triple.b +%%PSL%%%%DATADIR%%/red/bibasis_tset.b +%%PSL%%%%DATADIR%%/red/bigmodp.b +%%PSL%%%%DATADIR%%/red/block.b +%%PSL%%%%DATADIR%%/red/block4.b +%%PSL%%%%DATADIR%%/red/boolean.b +%%PSL%%%%DATADIR%%/red/bootstrap.img +%%PSL%%%%DATADIR%%/red/bounds.b +%%PSL%%%%DATADIR%%/red/bquote.b +%%PSL%%%%DATADIR%%/red/breduce.b +%%PSL%%%%DATADIR%%/red/buchbg.b +%%PSL%%%%DATADIR%%/red/cali.b +%%PSL%%%%DATADIR%%/red/calimat.b +%%PSL%%%%DATADIR%%/red/camal.b +%%PSL%%%%DATADIR%%/red/cantens.b +%%PSL%%%%DATADIR%%/red/cdiff.b +%%PSL%%%%DATADIR%%/red/cdiffx.b +%%PSL%%%%DATADIR%%/red/cedit.b +%%PSL%%%%DATADIR%%/red/cface.b +%%PSL%%%%DATADIR%%/red/cgb.b +%%PSL%%%%DATADIR%%/red/changevr.b +%%PSL%%%%DATADIR%%/red/charname.b +%%PSL%%%%DATADIR%%/red/charpol.b +%%PSL%%%%DATADIR%%/red/chebysh.b +%%PSL%%%%DATADIR%%/red/checkind.b +%%PSL%%%%DATADIR%%/red/cholesky.b +%%PSL%%%%DATADIR%%/red/cl.b +%%PSL%%%%DATADIR%%/red/clbnf.b +%%PSL%%%%DATADIR%%/red/clmisc.b +%%PSL%%%%DATADIR%%/red/clnf.b +%%PSL%%%%DATADIR%%/red/clprl.b +%%PSL%%%%DATADIR%%/red/clqe.b +%%PSL%%%%DATADIR%%/red/clresolv.b +%%PSL%%%%DATADIR%%/red/clsimpl.b +%%PSL%%%%DATADIR%%/red/clsl.b +%%PSL%%%%DATADIR%%/red/cltab.b +%%PSL%%%%DATADIR%%/red/coates.b +%%PSL%%%%DATADIR%%/red/coatesid.b +%%PSL%%%%DATADIR%%/red/codad1.b +%%PSL%%%%DATADIR%%/red/codad2.b +%%PSL%%%%DATADIR%%/red/codctl.b +%%PSL%%%%DATADIR%%/red/coddec.b +%%PSL%%%%DATADIR%%/red/coddom.b +%%PSL%%%%DATADIR%%/red/codgen.b +%%PSL%%%%DATADIR%%/red/codhrn.b +%%PSL%%%%DATADIR%%/red/codmat.b +%%PSL%%%%DATADIR%%/red/codopt.b +%%PSL%%%%DATADIR%%/red/codpri.b +%%PSL%%%%DATADIR%%/red/codstr.b +%%PSL%%%%DATADIR%%/red/coeff.b +%%PSL%%%%DATADIR%%/red/coeffts.b +%%PSL%%%%DATADIR%%/red/cofactor.b +%%PSL%%%%DATADIR%%/red/comfac.b +%%PSL%%%%DATADIR%%/red/comment.b +%%PSL%%%%DATADIR%%/red/compact.b +%%PSL%%%%DATADIR%%/red/compactf.b +%%PSL%%%%DATADIR%%/red/compat.b +%%PSL%%%%DATADIR%%/red/complx.b +%%PSL%%%%DATADIR%%/red/complxp.b +%%PSL%%%%DATADIR%%/red/compopr.b +%%PSL%%%%DATADIR%%/red/comprd.b +%%PSL%%%%DATADIR%%/red/condense.b +%%PSL%%%%DATADIR%%/red/conj.b +%%PSL%%%%DATADIR%%/red/conlaw.b +%%PSL%%%%DATADIR%%/red/conlaw0.b +%%PSL%%%%DATADIR%%/red/conlaw1.b +%%PSL%%%%DATADIR%%/red/conlaw2.b +%%PSL%%%%DATADIR%%/red/conlaw3.b +%%PSL%%%%DATADIR%%/red/conlaw4.b +%%PSL%%%%DATADIR%%/red/constre.b +%%PSL%%%%DATADIR%%/red/contact.b +%%PSL%%%%DATADIR%%/red/contents.b +%%PSL%%%%DATADIR%%/red/contfr.b +%%PSL%%%%DATADIR%%/red/contfrac.b +%%PSL%%%%DATADIR%%/red/control.b +%%PSL%%%%DATADIR%%/red/contrtns.b +%%PSL%%%%DATADIR%%/red/convert.b +%%PSL%%%%DATADIR%%/red/cpxrn.b +%%PSL%%%%DATADIR%%/red/crack.b +%%PSL%%%%DATADIR%%/red/crdec.b +%%PSL%%%%DATADIR%%/red/crdiffelim.b +%%PSL%%%%DATADIR%%/red/crelem.b +%%PSL%%%%DATADIR%%/red/crequsol.b +%%PSL%%%%DATADIR%%/red/crgb.b +%%PSL%%%%DATADIR%%/red/crgensep.b +%%PSL%%%%DATADIR%%/red/crhomalg.b +%%PSL%%%%DATADIR%%/red/crident.b +%%PSL%%%%DATADIR%%/red/crineq.b +%%PSL%%%%DATADIR%%/red/crinit.b +%%PSL%%%%DATADIR%%/red/crint.b +%%PSL%%%%DATADIR%%/red/crlinalg.b +%%PSL%%%%DATADIR%%/red/crmain.b +%%PSL%%%%DATADIR%%/red/crpvm.b +%%PSL%%%%DATADIR%%/red/crsep.b +%%PSL%%%%DATADIR%%/red/crshort.b +%%PSL%%%%DATADIR%%/red/crsimp.b +%%PSL%%%%DATADIR%%/red/crsimpso.b +%%PSL%%%%DATADIR%%/red/crstruc.b +%%PSL%%%%DATADIR%%/red/crsubsys.b +%%PSL%%%%DATADIR%%/red/crtrafo.b +%%PSL%%%%DATADIR%%/red/crunder.b +%%PSL%%%%DATADIR%%/red/crutil.b +%%PSL%%%%DATADIR%%/red/csolve.b +%%PSL%%%%DATADIR%%/red/ctintro.b +%%PSL%%%%DATADIR%%/red/cvit.b +%%PSL%%%%DATADIR%%/red/cvitmap.b +%%PSL%%%%DATADIR%%/red/dcfsf.b +%%PSL%%%%DATADIR%%/red/dcfsfkacem.b +%%PSL%%%%DATADIR%%/red/dcfsfmisc.b +%%PSL%%%%DATADIR%%/red/dcfsfqe.b +%%PSL%%%%DATADIR%%/red/dcfsfsism.b +%%PSL%%%%DATADIR%%/red/decompos.b +%%PSL%%%%DATADIR%%/red/decrep.b +%%PSL%%%%DATADIR%%/red/defint.b +%%PSL%%%%DATADIR%%/red/defint0.b +%%PSL%%%%DATADIR%%/red/definta.b +%%PSL%%%%DATADIR%%/red/defintb.b +%%PSL%%%%DATADIR%%/red/defintc.b +%%PSL%%%%DATADIR%%/red/defintd.b +%%PSL%%%%DATADIR%%/red/definte.b +%%PSL%%%%DATADIR%%/red/defintf.b +%%PSL%%%%DATADIR%%/red/defintg.b +%%PSL%%%%DATADIR%%/red/definth.b +%%PSL%%%%DATADIR%%/red/definti.b +%%PSL%%%%DATADIR%%/red/defintj.b +%%PSL%%%%DATADIR%%/red/defintk.b +%%PSL%%%%DATADIR%%/red/defintx.b +%%PSL%%%%DATADIR%%/red/degform.b +%%PSL%%%%DATADIR%%/red/degsets.b +%%PSL%%%%DATADIR%%/red/depend.b +%%PSL%%%%DATADIR%%/red/desir.b +%%PSL%%%%DATADIR%%/red/det.b +%%PSL%%%%DATADIR%%/red/df2q.b +%%PSL%%%%DATADIR%%/red/dfpart.b +%%PSL%%%%DATADIR%%/red/dfprin.b +%%PSL%%%%DATADIR%%/red/diff.b +%%PSL%%%%DATADIR%%/red/dilog.b +%%PSL%%%%DATADIR%%/red/dint.b +%%PSL%%%%DATADIR%%/red/dip2a.b +%%PSL%%%%DATADIR%%/red/dipoly.b +%%PSL%%%%DATADIR%%/red/dipoly1.b +%%PSL%%%%DATADIR%%/red/dipprint.b +%%PSL%%%%DATADIR%%/red/dipvars.b +%%PSL%%%%DATADIR%%/red/discret.b +%%PSL%%%%DATADIR%%/red/disjoin.b +%%PSL%%%%DATADIR%%/red/distrib.b +%%PSL%%%%DATADIR%%/red/divide.b +%%PSL%%%%DATADIR%%/red/dmode.b +%%PSL%%%%DATADIR%%/red/dmodeop.b +%%PSL%%%%DATADIR%%/red/dp.b +%%PSL%%%%DATADIR%%/red/dpmat.b +%%PSL%%%%DATADIR%%/red/dpoly.b +%%PSL%%%%DATADIR%%/red/driver.b +%%PSL%%%%DATADIR%%/red/dummy.b +%%PSL%%%%DATADIR%%/red/dummy1.b +%%PSL%%%%DATADIR%%/red/dummy2.b +%%PSL%%%%DATADIR%%/red/dummycnt.b +%%PSL%%%%DATADIR%%/red/dvfsf.b +%%PSL%%%%DATADIR%%/red/dvfsfmisc.b +%%PSL%%%%DATADIR%%/red/dvfsfqe.b +%%PSL%%%%DATADIR%%/red/dvfsfsiat.b +%%PSL%%%%DATADIR%%/red/dvfsfsism.b +%%PSL%%%%DATADIR%%/red/eds.b +%%PSL%%%%DATADIR%%/red/edsaux.b +%%PSL%%%%DATADIR%%/red/edscfrm.b +%%PSL%%%%DATADIR%%/red/edsequiv.b +%%PSL%%%%DATADIR%%/red/edseval.b +%%PSL%%%%DATADIR%%/red/edsexptl.b +%%PSL%%%%DATADIR%%/red/edsnorml.b +%%PSL%%%%DATADIR%%/red/edspatch.b +%%PSL%%%%DATADIR%%/red/edspde.b +%%PSL%%%%DATADIR%%/red/edssolve.b +%%PSL%%%%DATADIR%%/red/edsuser.b +%%PSL%%%%DATADIR%%/red/elem.b +%%PSL%%%%DATADIR%%/red/element.b +%%PSL%%%%DATADIR%%/red/entry.b +%%PSL%%%%DATADIR%%/red/eqn.b +%%PSL%%%%DATADIR%%/red/evalmaps.b +%%PSL%%%%DATADIR%%/red/exaux.b +%%PSL%%%%DATADIR%%/red/excalc.b +%%PSL%%%%DATADIR%%/red/exdf.b +%%PSL%%%%DATADIR%%/red/exintro.b +%%PSL%%%%DATADIR%%/red/exlists.b +%%PSL%%%%DATADIR%%/red/expon.b +%%PSL%%%%DATADIR%%/red/expres.b +%%PSL%%%%DATADIR%%/red/exptchk.b +%%PSL%%%%DATADIR%%/red/exptf.b +%%PSL%%%%DATADIR%%/red/expvec.b +%%PSL%%%%DATADIR%%/red/extops.b +%%PSL%%%%DATADIR%%/red/extout.b +%%PSL%%%%DATADIR%%/red/ezgcd.b +%%PSL%%%%DATADIR%%/red/ezgcdf.b +%%PSL%%%%DATADIR%%/red/facform.b +%%PSL%%%%DATADIR%%/red/facmisc.b +%%PSL%%%%DATADIR%%/red/facmod.b +%%PSL%%%%DATADIR%%/red/facprim.b +%%PSL%%%%DATADIR%%/red/facstr.b +%%PSL%%%%DATADIR%%/red/factor.b +%%PSL%%%%DATADIR%%/red/facuni.b +%%PSL%%%%DATADIR%%/red/farith.b +%%PSL%%%%DATADIR%%/red/fastmath.b +%%PSL%%%%DATADIR%%/red/fastmod.b +%%PSL%%%%DATADIR%%/red/fide.b +%%PSL%%%%DATADIR%%/red/fide1.b +%%PSL%%%%DATADIR%%/red/findmagc.b +%%PSL%%%%DATADIR%%/red/findres.b +%%PSL%%%%DATADIR%%/red/finitise.b +%%PSL%%%%DATADIR%%/red/fixes2.b +%%PSL%%%%DATADIR%%/red/fixsubf.b +%%PSL%%%%DATADIR%%/red/fmprint.b +%%PSL%%%%DATADIR%%/red/for88.b +%%PSL%%%%DATADIR%%/red/forall.b +%%PSL%%%%DATADIR%%/red/forall4.b +%%PSL%%%%DATADIR%%/red/forder.b +%%PSL%%%%DATADIR%%/red/form.b +%%PSL%%%%DATADIR%%/red/form4.b +%%PSL%%%%DATADIR%%/red/forstat.b +%%PSL%%%%DATADIR%%/red/forstat4.b +%%PSL%%%%DATADIR%%/red/fortpri.b +%%PSL%%%%DATADIR%%/red/fourdom.b +%%PSL%%%%DATADIR%%/red/fourplus.b +%%PSL%%%%DATADIR%%/red/fps.b +%%PSL%%%%DATADIR%%/red/fracdi.b +%%PSL%%%%DATADIR%%/red/frames.b +%%PSL%%%%DATADIR%%/red/froben.b +%%PSL%%%%DATADIR%%/red/fsimplex.b +%%PSL%%%%DATADIR%%/red/gauss.b +%%PSL%%%%DATADIR%%/red/gb.b +%%PSL%%%%DATADIR%%/red/gbsc.b +%%PSL%%%%DATADIR%%/red/gcd.b +%%PSL%%%%DATADIR%%/red/gcref.b +%%PSL%%%%DATADIR%%/red/general.b +%%PSL%%%%DATADIR%%/red/genmod.b +%%PSL%%%%DATADIR%%/red/genparser.b +%%PSL%%%%DATADIR%%/red/genpurfn.b +%%PSL%%%%DATADIR%%/red/gentens.b +%%PSL%%%%DATADIR%%/red/gentran.b +%%PSL%%%%DATADIR%%/red/genus.b +%%PSL%%%%DATADIR%%/red/geometry.b +%%PSL%%%%DATADIR%%/red/geoprover.b +%%PSL%%%%DATADIR%%/red/ghyper.b +%%PSL%%%%DATADIR%%/red/gint.b +%%PSL%%%%DATADIR%%/red/glexconv.b +%%PSL%%%%DATADIR%%/red/glmat.b +%%PSL%%%%DATADIR%%/red/glsolve.b +%%PSL%%%%DATADIR%%/red/gnuintfc.b +%%PSL%%%%DATADIR%%/red/gnupldrv.b +%%PSL%%%%DATADIR%%/red/gnuplot.b +%%PSL%%%%DATADIR%%/red/goutput.b +%%PSL%%%%DATADIR%%/red/gparser.b +%%PSL%%%%DATADIR%%/red/gramschm.b +%%PSL%%%%DATADIR%%/red/grassman.b +%%PSL%%%%DATADIR%%/red/greduo.b +%%PSL%%%%DATADIR%%/red/grinter2.b +%%PSL%%%%DATADIR%%/red/grinterf.b +%%PSL%%%%DATADIR%%/red/groeb.b +%%PSL%%%%DATADIR%%/red/groebcri.b +%%PSL%%%%DATADIR%%/red/groebf.b +%%PSL%%%%DATADIR%%/red/groebfac.b +%%PSL%%%%DATADIR%%/red/groebidq.b +%%PSL%%%%DATADIR%%/red/groebman.b +%%PSL%%%%DATADIR%%/red/groebmes.b +%%PSL%%%%DATADIR%%/red/groebner.b +%%PSL%%%%DATADIR%%/red/groebnr2.b +%%PSL%%%%DATADIR%%/red/groebopt.b +%%PSL%%%%DATADIR%%/red/groebrst.b +%%PSL%%%%DATADIR%%/red/groebsea.b +%%PSL%%%%DATADIR%%/red/groebsor.b +%%PSL%%%%DATADIR%%/red/groebspa.b +%%PSL%%%%DATADIR%%/red/groebtra.b +%%PSL%%%%DATADIR%%/red/groesolv.b +%%PSL%%%%DATADIR%%/red/groeweak.b +%%PSL%%%%DATADIR%%/red/guardian.b +%%PSL%%%%DATADIR%%/red/guardianprint.b +%%PSL%%%%DATADIR%%/red/guardianschemes.b +%%PSL%%%%DATADIR%%/red/hacksqrt.b +%%PSL%%%%DATADIR%%/red/halfangl.b +%%PSL%%%%DATADIR%%/red/harmonic.b +%%PSL%%%%DATADIR%%/red/hcvctors.b +%%PSL%%%%DATADIR%%/red/hdiff.b +%%PSL%%%%DATADIR%%/red/helpasst.b +%%PSL%%%%DATADIR%%/red/hephys.b +%%PSL%%%%DATADIR%%/red/hf.b +%%PSL%%%%DATADIR%%/red/hggroeb.b +%%PSL%%%%DATADIR%%/red/hgrsolve.b +%%PSL%%%%DATADIR%%/red/hilbertp.b +%%PSL%%%%DATADIR%%/red/hilberts.b +%%PSL%%%%DATADIR%%/red/hille.b +%%PSL%%%%DATADIR%%/red/hodge.b +%%PSL%%%%DATADIR%%/red/homog.b +%%PSL%%%%DATADIR%%/red/horner.b +%%PSL%%%%DATADIR%%/red/hsub.b +%%PSL%%%%DATADIR%%/red/hugo +%%PSL%%%%DATADIR%%/red/hurwp.b +%%PSL%%%%DATADIR%%/red/ibalp.b +%%PSL%%%%DATADIR%%/red/ibalpkapur.b +%%PSL%%%%DATADIR%%/red/ibalpqsat.b +%%PSL%%%%DATADIR%%/red/ibasics.b +%%PSL%%%%DATADIR%%/red/ideals.b +%%PSL%%%%DATADIR%%/red/idepend.b +%%PSL%%%%DATADIR%%/red/idexf.b +%%PSL%%%%DATADIR%%/red/iimet.b +%%PSL%%%%DATADIR%%/red/imageset.b +%%PSL%%%%DATADIR%%/red/indices.b +%%PSL%%%%DATADIR%%/red/indsymm.b +%%PSL%%%%DATADIR%%/red/indxprin.b +%%PSL%%%%DATADIR%%/red/ineq.b +%%PSL%%%%DATADIR%%/red/infix.b +%%PSL%%%%DATADIR%%/red/inline-defs.dat +%%PSL%%%%DATADIR%%/red/innerprd.b +%%PSL%%%%DATADIR%%/red/inspect.b +%%PSL%%%%DATADIR%%/red/int.b +%%PSL%%%%DATADIR%%/red/intbasis.b +%%PSL%%%%DATADIR%%/red/integrator.b +%%PSL%%%%DATADIR%%/red/inter.b +%%PSL%%%%DATADIR%%/red/interfac.b +%%PSL%%%%DATADIR%%/red/interpol.b +%%PSL%%%%DATADIR%%/red/intf.b +%%PSL%%%%DATADIR%%/red/intfac.b +%%PSL%%%%DATADIR%%/red/intfierz.b +%%PSL%%%%DATADIR%%/red/intrfc.b +%%PSL%%%%DATADIR%%/red/intro.b +%%PSL%%%%DATADIR%%/red/inttaylr.b +%%PSL%%%%DATADIR%%/red/invbase.b +%%PSL%%%%DATADIR%%/red/invbcomp.b +%%PSL%%%%DATADIR%%/red/invbint.b +%%PSL%%%%DATADIR%%/red/invol.b +%%PSL%%%%DATADIR%%/red/io.b +%%PSL%%%%DATADIR%%/red/ioto.b +%%PSL%%%%DATADIR%%/red/ir2om.b +%%PSL%%%%DATADIR%%/red/isolve.b +%%PSL%%%%DATADIR%%/red/jhddiff.b +%%PSL%%%%DATADIR%%/red/jhdriver.b +%%PSL%%%%DATADIR%%/red/jordan.b +%%PSL%%%%DATADIR%%/red/jordsymb.b +%%PSL%%%%DATADIR%%/red/jpatches.b +%%PSL%%%%DATADIR%%/red/jsymbols.b +%%PSL%%%%DATADIR%%/red/kernel.b +%%PSL%%%%DATADIR%%/red/kredelw.b +%%PSL%%%%DATADIR%%/red/kronf.b +%%PSL%%%%DATADIR%%/red/kuechl.b +%%PSL%%%%DATADIR%%/red/lalr.b +%%PSL%%%%DATADIR%%/red/lamatrix.b +%%PSL%%%%DATADIR%%/red/laplace.b +%%PSL%%%%DATADIR%%/red/lf.b +%%PSL%%%%DATADIR%%/red/libreduce.b +%%PSL%%%%DATADIR%%/red/lie.b +%%PSL%%%%DATADIR%%/red/lie1234.b +%%PSL%%%%DATADIR%%/red/liedf.b +%%PSL%%%%DATADIR%%/red/liendmc1.b +%%PSL%%%%DATADIR%%/red/liepde.b +%%PSL%%%%DATADIR%%/red/lievalfm.b +%%PSL%%%%DATADIR%%/red/limits.b +%%PSL%%%%DATADIR%%/red/linalg.b +%%PSL%%%%DATADIR%%/red/linband.b +%%PSL%%%%DATADIR%%/red/linineq.b +%%PSL%%%%DATADIR%%/red/linmodp.b +%%PSL%%%%DATADIR%%/red/linop.b +%%PSL%%%%DATADIR%%/red/linrec.b +%%PSL%%%%DATADIR%%/red/linrel.b +%%PSL%%%%DATADIR%%/red/liqsimp1.b +%%PSL%%%%DATADIR%%/red/liqsimp2.b +%%PSL%%%%DATADIR%%/red/list.b +%%PSL%%%%DATADIR%%/red/listvecops.b +%%PSL%%%%DATADIR%%/red/log2atan.b +%%PSL%%%%DATADIR%%/red/logsort.b +%%PSL%%%%DATADIR%%/red/loops.b +%%PSL%%%%DATADIR%%/red/loops88.b +%%PSL%%%%DATADIR%%/red/lpdo.b +%%PSL%%%%DATADIR%%/red/lpri.b +%%PSL%%%%DATADIR%%/red/lspc.b +%%PSL%%%%DATADIR%%/red/lspfor.b +%%PSL%%%%DATADIR%%/red/lsppasc.b +%%PSL%%%%DATADIR%%/red/lsprat.b +%%PSL%%%%DATADIR%%/red/lto.b +%%PSL%%%%DATADIR%%/red/ludecom.b +%%PSL%%%%DATADIR%%/red/makefour.b +%%PSL%%%%DATADIR%%/red/makevars.b +%%PSL%%%%DATADIR%%/red/maninp.b +%%PSL%%%%DATADIR%%/red/map.b +%%PSL%%%%DATADIR%%/red/map2strn.b +%%PSL%%%%DATADIR%%/red/matarg.b +%%PSL%%%%DATADIR%%/red/math.b +%%PSL%%%%DATADIR%%/red/mathml.b +%%PSL%%%%DATADIR%%/red/mathmlom.b +%%PSL%%%%DATADIR%%/red/mathpr.b +%%PSL%%%%DATADIR%%/red/matop.b +%%PSL%%%%DATADIR%%/red/matpri.b +%%PSL%%%%DATADIR%%/red/matproc.b +%%PSL%%%%DATADIR%%/red/matrext.b +%%PSL%%%%DATADIR%%/red/matrix.b +%%PSL%%%%DATADIR%%/red/matrix4.b +%%PSL%%%%DATADIR%%/red/matsm.b +%%PSL%%%%DATADIR%%/red/maxmin.b +%%PSL%%%%DATADIR%%/red/meijerg.b +%%PSL%%%%DATADIR%%/red/mhensfns.b +%%PSL%%%%DATADIR%%/red/minlngth.b +%%PSL%%%%DATADIR%%/red/misc.b +%%PSL%%%%DATADIR%%/red/mksp.b +%%PSL%%%%DATADIR%%/red/mma.awk +%%PSL%%%%DATADIR%%/red/mma.b +%%PSL%%%%DATADIR%%/red/mml_ir.b +%%PSL%%%%DATADIR%%/red/mo.b +%%PSL%%%%DATADIR%%/red/modify.b +%%PSL%%%%DATADIR%%/red/modlineq.b +%%PSL%%%%DATADIR%%/red/modpoly.b +%%PSL%%%%DATADIR%%/red/modroots.b +%%PSL%%%%DATADIR%%/red/modsolve.b +%%PSL%%%%DATADIR%%/red/modsqrt.b +%%PSL%%%%DATADIR%%/red/modsr.b +%%PSL%%%%DATADIR%%/red/modular.b +%%PSL%%%%DATADIR%%/red/module.b +%%PSL%%%%DATADIR%%/red/moid.b +%%PSL%%%%DATADIR%%/red/mprint.b +%%PSL%%%%DATADIR%%/red/mri.b +%%PSL%%%%DATADIR%%/red/mri_ofsf.b +%%PSL%%%%DATADIR%%/red/mri_pasf.b +%%PSL%%%%DATADIR%%/red/mriqe.b +%%PSL%%%%DATADIR%%/red/mrvlimit.b +%%PSL%%%%DATADIR%%/red/mstruct.b +%%PSL%%%%DATADIR%%/red/mtables.b +%%PSL%%%%DATADIR%%/red/multihen.b +%%PSL%%%%DATADIR%%/red/multroot.b +%%PSL%%%%DATADIR%%/red/mv.b +%%PSL%%%%DATADIR%%/red/mvmatch.b +%%PSL%%%%DATADIR%%/red/nagell.b +%%PSL%%%%DATADIR%%/red/nbasis.b +%%PSL%%%%DATADIR%%/red/ncdip.b +%%PSL%%%%DATADIR%%/red/ncenv.b +%%PSL%%%%DATADIR%%/red/ncfactor.b +%%PSL%%%%DATADIR%%/red/ncgroeb.b +%%PSL%%%%DATADIR%%/red/ncout.b +%%PSL%%%%DATADIR%%/red/ncpoly.b +%%PSL%%%%DATADIR%%/red/nestdom.b +%%PSL%%%%DATADIR%%/red/nestrad.b +%%PSL%%%%DATADIR%%/red/newtok.b +%%PSL%%%%DATADIR%%/red/newton.b +%%PSL%%%%DATADIR%%/red/noncom2.b +%%PSL%%%%DATADIR%%/red/normform.b +%%PSL%%%%DATADIR%%/red/nrstroot.b +%%PSL%%%%DATADIR%%/red/nssimp.b +%%PSL%%%%DATADIR%%/red/nullsp.b +%%PSL%%%%DATADIR%%/red/numeric.b +%%PSL%%%%DATADIR%%/red/numeval.b +%%PSL%%%%DATADIR%%/red/numfit.b +%%PSL%%%%DATADIR%%/red/numint.b +%%PSL%%%%DATADIR%%/red/numsolve.b +%%PSL%%%%DATADIR%%/red/numsup.b +%%PSL%%%%DATADIR%%/red/odeintfc.b +%%PSL%%%%DATADIR%%/red/odelin.b +%%PSL%%%%DATADIR%%/red/odenon1.b +%%PSL%%%%DATADIR%%/red/odenonn.b +%%PSL%%%%DATADIR%%/red/odepatch.b +%%PSL%%%%DATADIR%%/red/odesolve.b +%%PSL%%%%DATADIR%%/red/odespcfn.b +%%PSL%%%%DATADIR%%/red/odetop.b +%%PSL%%%%DATADIR%%/red/odim.b +%%PSL%%%%DATADIR%%/red/ofsf.b +%%PSL%%%%DATADIR%%/red/ofsfanuex.b +%%PSL%%%%DATADIR%%/red/ofsfbnf.b +%%PSL%%%%DATADIR%%/red/ofsfcad.b +%%PSL%%%%DATADIR%%/red/ofsfcadproj.b +%%PSL%%%%DATADIR%%/red/ofsfdecdeg.b +%%PSL%%%%DATADIR%%/red/ofsfdet.b +%%PSL%%%%DATADIR%%/red/ofsfdpep.b +%%PSL%%%%DATADIR%%/red/ofsfexfr.b +%%PSL%%%%DATADIR%%/red/ofsfgs.b +%%PSL%%%%DATADIR%%/red/ofsfhqe.b +%%PSL%%%%DATADIR%%/red/ofsflp.b +%%PSL%%%%DATADIR%%/red/ofsfmisc.b +%%PSL%%%%DATADIR%%/red/ofsfopt.b +%%PSL%%%%DATADIR%%/red/ofsfqe.b +%%PSL%%%%DATADIR%%/red/ofsfsiat.b +%%PSL%%%%DATADIR%%/red/ofsfsism.b +%%PSL%%%%DATADIR%%/red/ofsftfc.b +%%PSL%%%%DATADIR%%/red/ofsftrop.b +%%PSL%%%%DATADIR%%/red/ofsfvsl.b +%%PSL%%%%DATADIR%%/red/ofsfxopt.b +%%PSL%%%%DATADIR%%/red/om2ir.b +%%PSL%%%%DATADIR%%/red/opertens.b +%%PSL%%%%DATADIR%%/red/opmtch.b +%%PSL%%%%DATADIR%%/red/order.b +%%PSL%%%%DATADIR%%/red/orthovec.b +%%PSL%%%%DATADIR%%/red/package4.b +%%PSL%%%%DATADIR%%/red/pade.b +%%PSL%%%%DATADIR%%/red/paraset.b +%%PSL%%%%DATADIR%%/red/parray.b +%%PSL%%%%DATADIR%%/red/parser.b +%%PSL%%%%DATADIR%%/red/part.b +%%PSL%%%%DATADIR%%/red/partdf.b +%%PSL%%%%DATADIR%%/red/partitns.b +%%PSL%%%%DATADIR%%/red/partitsf.b +%%PSL%%%%DATADIR%%/red/pasf.b +%%PSL%%%%DATADIR%%/red/pasfbnf.b +%%PSL%%%%DATADIR%%/red/pasfmisc.b +%%PSL%%%%DATADIR%%/red/pasfnf.b +%%PSL%%%%DATADIR%%/red/pasfopt.b +%%PSL%%%%DATADIR%%/red/pasfqe.b +%%PSL%%%%DATADIR%%/red/pasfresolve.b +%%PSL%%%%DATADIR%%/red/pasfsiat.b +%%PSL%%%%DATADIR%%/red/pasfsism.b +%%PSL%%%%DATADIR%%/red/pattdefn.b +%%PSL%%%%DATADIR%%/red/pattperm.b +%%PSL%%%%DATADIR%%/red/perm1.b +%%PSL%%%%DATADIR%%/red/perms.b +%%PSL%%%%DATADIR%%/red/pf.b +%%PSL%%%%DATADIR%%/red/pfacmult.b +%%PSL%%%%DATADIR%%/red/pfactor.b +%%PSL%%%%DATADIR%%/red/pgauss.b +%%PSL%%%%DATADIR%%/red/pgcond.b +%%PSL%%%%DATADIR%%/red/pgsm.b +%%PSL%%%%DATADIR%%/red/physop.b +%%PSL%%%%DATADIR%%/red/pident.b +%%PSL%%%%DATADIR%%/red/places.b +%%PSL%%%%DATADIR%%/red/plot.b +%%PSL%%%%DATADIR%%/red/plotexp2.b +%%PSL%%%%DATADIR%%/red/plotexp3.b +%%PSL%%%%DATADIR%%/red/plotimp2.b +%%PSL%%%%DATADIR%%/red/plotimp3.b +%%PSL%%%%DATADIR%%/red/plotnum.b +%%PSL%%%%DATADIR%%/red/plotsynt.b +%%PSL%%%%DATADIR%%/red/pltpara.b +%%PSL%%%%DATADIR%%/red/pm.b +%%PSL%%%%DATADIR%%/red/pmintrfc.b +%%PSL%%%%DATADIR%%/red/pmpatch.b +%%PSL%%%%DATADIR%%/red/pmrules.b +%%PSL%%%%DATADIR%%/red/polineq.b +%%PSL%%%%DATADIR%%/red/polrep.b +%%PSL%%%%DATADIR%%/red/poly.b +%%PSL%%%%DATADIR%%/red/polydiv.b +%%PSL%%%%DATADIR%%/red/polyexns.b +%%PSL%%%%DATADIR%%/red/polyop.b +%%PSL%%%%DATADIR%%/red/ppsoln.b +%%PSL%%%%DATADIR%%/red/pre.b +%%PSL%%%%DATADIR%%/red/precoats.b +%%PSL%%%%DATADIR%%/red/prep.b +%%PSL%%%%DATADIR%%/red/pretty.b +%%PSL%%%%DATADIR%%/red/prime.b +%%PSL%%%%DATADIR%%/red/primfac.b +%%PSL%%%%DATADIR%%/red/primitive.b +%%PSL%%%%DATADIR%%/red/proc.b +%%PSL%%%%DATADIR%%/red/proc4.b +%%PSL%%%%DATADIR%%/red/prod.b +%%PSL%%%%DATADIR%%/red/profile.b +%%PSL%%%%DATADIR%%/red/prolong.b +%%PSL%%%%DATADIR%%/red/psl.b +%%PSL%%%%DATADIR%%/red/pslprolo.b +%%PSL%%%%DATADIR%%/red/pslrend.b +%%PSL%%%%DATADIR%%/red/pullback.b +%%PSL%%%%DATADIR%%/red/pvector.b +%%PSL%%%%DATADIR%%/red/qepcad.awk +%%PSL%%%%DATADIR%%/red/qepcad.b +%%PSL%%%%DATADIR%%/red/qhull.b +%%PSL%%%%DATADIR%%/red/qqe.b +%%PSL%%%%DATADIR%%/red/qqe_ofsf.b +%%PSL%%%%DATADIR%%/red/qqemisc.b +%%PSL%%%%DATADIR%%/red/qqeqe.b +%%PSL%%%%DATADIR%%/red/qqeqemisc.b +%%PSL%%%%DATADIR%%/red/qqesiat.b +%%PSL%%%%DATADIR%%/red/qqesism.b +%%PSL%%%%DATADIR%%/red/qqetrans.b +%%PSL%%%%DATADIR%%/red/qsum.b +%%PSL%%%%DATADIR%%/red/quartic.b +%%PSL%%%%DATADIR%%/red/quot.b +%%PSL%%%%DATADIR%%/red/quotf.b +%%PSL%%%%DATADIR%%/red/raarith.b +%%PSL%%%%DATADIR%%/red/raiv.b +%%PSL%%%%DATADIR%%/red/random.b +%%PSL%%%%DATADIR%%/red/randpoly.b +%%PSL%%%%DATADIR%%/red/rank.b +%%PSL%%%%DATADIR%%/red/ranks.b +%%PSL%%%%DATADIR%%/red/rankstat.b +%%PSL%%%%DATADIR%%/red/ranum.b +%%PSL%%%%DATADIR%%/red/rarcount.b +%%PSL%%%%DATADIR%%/red/ratalgo.b +%%PSL%%%%DATADIR%%/red/rataprx.b +%%PSL%%%%DATADIR%%/red/ratint.b +%%PSL%%%%DATADIR%%/red/rational.b +%%PSL%%%%DATADIR%%/red/ratjord.b +%%PSL%%%%DATADIR%%/red/ratprin.b +%%PSL%%%%DATADIR%%/red/rcref.b +%%PSL%%%%DATADIR%%/red/rdelem.b +%%PSL%%%%DATADIR%%/red/reacteqn.b +%%PSL%%%%DATADIR%%/red/realroot.b +%%PSL%%%%DATADIR%%/red/records.b +%%PSL%%%%DATADIR%%/red/recsimpl.b +%%PSL%%%%DATADIR%%/red/red.b +%%PSL%%%%DATADIR%%/red/red2cvit.b +%%PSL%%%%DATADIR%%/red/reddom.b +%%PSL%%%%DATADIR%%/red/redfront.b +%%PSL%%%%DATADIR%%/red/redio.b +%%PSL%%%%DATADIR%%/red/redlog.b +%%PSL%%%%DATADIR%%/red/redlsp.b +%%PSL%%%%DATADIR%%/red/reduce.img +%%PSL%%%%DATADIR%%/red/reduce4.b +%%PSL%%%%DATADIR%%/red/reform.b +%%PSL%%%%DATADIR%%/red/remake.b +%%PSL%%%%DATADIR%%/red/removecm.b +%%PSL%%%%DATADIR%%/red/reord.b +%%PSL%%%%DATADIR%%/red/res.b +%%PSL%%%%DATADIR%%/red/reset.b +%%PSL%%%%DATADIR%%/red/residue.b +%%PSL%%%%DATADIR%%/red/restore.b +%%PSL%%%%DATADIR%%/red/restrict.b +%%PSL%%%%DATADIR%%/red/resultnt.b +%%PSL%%%%DATADIR%%/red/reval.b +%%PSL%%%%DATADIR%%/red/reval4.b +%%PSL%%%%DATADIR%%/red/ring.b +%%PSL%%%%DATADIR%%/red/rlami.b +%%PSL%%%%DATADIR%%/red/rlcont.b +%%PSL%%%%DATADIR%%/red/rlfi.b +%%PSL%%%%DATADIR%%/red/rlhelp.b +%%PSL%%%%DATADIR%%/red/rlisp.b +%%PSL%%%%DATADIR%%/red/rlisp88.b +%%PSL%%%%DATADIR%%/red/rlsched.b +%%PSL%%%%DATADIR%%/red/rlsl.b +%%PSL%%%%DATADIR%%/red/rlslv.b +%%PSL%%%%DATADIR%%/red/rltools.b +%%PSL%%%%DATADIR%%/red/rmsubs.b +%%PSL%%%%DATADIR%%/red/rnelem.b +%%PSL%%%%DATADIR%%/red/rootaux.b +%%PSL%%%%DATADIR%%/red/roots.b +%%PSL%%%%DATADIR%%/red/roots2.b +%%PSL%%%%DATADIR%%/red/rounded.b +%%PSL%%%%DATADIR%%/red/rprint.b +%%PSL%%%%DATADIR%%/red/rsolve.b +%%PSL%%%%DATADIR%%/red/rsupport.b +%%PSL%%%%DATADIR%%/red/rtrace.b +%%PSL%%%%DATADIR%%/red/rubi_parse.b +%%PSL%%%%DATADIR%%/red/rubi_red.b +%%PSL%%%%DATADIR%%/red/rubi_rul_s.lap +%%PSL%%%%DATADIR%%/red/rubi_rules.b +%%PSL%%%%DATADIR%%/red/rungeku.b +%%PSL%%%%DATADIR%%/red/rvector.b +%%PSL%%%%DATADIR%%/red/scope.b +%%PSL%%%%DATADIR%%/red/scripts.b +%%PSL%%%%DATADIR%%/red/segmnt.b +%%PSL%%%%DATADIR%%/red/sets.b +%%PSL%%%%DATADIR%%/red/sfairy.b +%%PSL%%%%DATADIR%%/red/sfbdata.b +%%PSL%%%%DATADIR%%/red/sfbern.b +%%PSL%%%%DATADIR%%/red/sfbes.b +%%PSL%%%%DATADIR%%/red/sfbinom.b +%%PSL%%%%DATADIR%%/red/sfconsts.b +%%PSL%%%%DATADIR%%/red/sfellip.b +%%PSL%%%%DATADIR%%/red/sfellipi.b +%%PSL%%%%DATADIR%%/red/sfgamm.b +%%PSL%%%%DATADIR%%/red/sfgamma.b +%%PSL%%%%DATADIR%%/red/sfgen.b +%%PSL%%%%DATADIR%%/red/sfigamma.b +%%PSL%%%%DATADIR%%/red/sfint.b +%%PSL%%%%DATADIR%%/red/sfkummer.b +%%PSL%%%%DATADIR%%/red/sfother.b +%%PSL%%%%DATADIR%%/red/sfpolys.b +%%PSL%%%%DATADIR%%/red/sfpsi.b +%%PSL%%%%DATADIR%%/red/sfsums.b +%%PSL%%%%DATADIR%%/red/sfto.b +%%PSL%%%%DATADIR%%/red/sftoresultant.b +%%PSL%%%%DATADIR%%/red/showrule.b +%%PSL%%%%DATADIR%%/red/simp.b +%%PSL%%%%DATADIR%%/red/simp4.b +%%PSL%%%%DATADIR%%/red/simpfact.b +%%PSL%%%%DATADIR%%/red/simplede.b +%%PSL%%%%DATADIR%%/red/simplex.b +%%PSL%%%%DATADIR%%/red/simplog.b +%%PSL%%%%DATADIR%%/red/simpsqrt.b +%%PSL%%%%DATADIR%%/red/sl2psl.b +%%PSL%%%%DATADIR%%/red/slfns.b +%%PSL%%%%DATADIR%%/red/smacro.b +%%PSL%%%%DATADIR%%/red/smallmod.b +%%PSL%%%%DATADIR%%/red/smithex.b +%%PSL%%%%DATADIR%%/red/smithex1.b +%%PSL%%%%DATADIR%%/red/smlbflot.b +%%PSL%%%%DATADIR%%/red/smt.b +%%PSL%%%%DATADIR%%/red/smtread.b +%%PSL%%%%DATADIR%%/red/solve.b +%%PSL%%%%DATADIR%%/red/solve1.b +%%PSL%%%%DATADIR%%/red/solvealg.b +%%PSL%%%%DATADIR%%/red/solvelnr.b +%%PSL%%%%DATADIR%%/red/solvetab.b +%%PSL%%%%DATADIR%%/red/sort.b +%%PSL%%%%DATADIR%%/red/spaces.b +%%PSL%%%%DATADIR%%/red/sparse.b +%%PSL%%%%DATADIR%%/red/sparsmat.b +%%PSL%%%%DATADIR%%/red/spcfnint.b +%%PSL%%%%DATADIR%%/red/spchlsky.b +%%PSL%%%%DATADIR%%/red/spde.b +%%PSL%%%%DATADIR%%/red/specbess.b +%%PSL%%%%DATADIR%%/red/specfac.b +%%PSL%%%%DATADIR%%/red/specfaux.b +%%PSL%%%%DATADIR%%/red/specfn.b +%%PSL%%%%DATADIR%%/red/specfn2.b +%%PSL%%%%DATADIR%%/red/spgrmshm.b +%%PSL%%%%DATADIR%%/red/splinalg.b +%%PSL%%%%DATADIR%%/red/spludcmp.b +%%PSL%%%%DATADIR%%/red/spmateig.b +%%PSL%%%%DATADIR%%/red/spsvd.b +%%PSL%%%%DATADIR%%/red/sqfrnorm.b +%%PSL%%%%DATADIR%%/red/sqprint.b +%%PSL%%%%DATADIR%%/red/sqrtf.b +%%PSL%%%%DATADIR%%/red/statmisc.b +%%PSL%%%%DATADIR%%/red/steepstd.b +%%PSL%%%%DATADIR%%/red/str.b +%%PSL%%%%DATADIR%%/red/struct4.b +%%PSL%%%%DATADIR%%/red/sub.b +%%PSL%%%%DATADIR%%/red/subs2q.b +%%PSL%%%%DATADIR%%/red/subs3q.b +%%PSL%%%%DATADIR%%/red/subs4q.b +%%PSL%%%%DATADIR%%/red/substexp.b +%%PSL%%%%DATADIR%%/red/substns.b +%%PSL%%%%DATADIR%%/red/sum.b +%%PSL%%%%DATADIR%%/red/sum2.b +%%PSL%%%%DATADIR%%/red/superv.b +%%PSL%%%%DATADIR%%/red/supervf.b +%%PSL%%%%DATADIR%%/red/support.b +%%PSL%%%%DATADIR%%/red/susy2.b +%%PSL%%%%DATADIR%%/red/svd.b +%%PSL%%%%DATADIR%%/red/switch.b +%%PSL%%%%DATADIR%%/red/switchxt.b +%%PSL%%%%DATADIR%%/red/symatvec.b +%%PSL%%%%DATADIR%%/red/symaux.b +%%PSL%%%%DATADIR%%/red/symcheck.b +%%PSL%%%%DATADIR%%/red/symchrep.b +%%PSL%%%%DATADIR%%/red/symdata1.b +%%PSL%%%%DATADIR%%/red/symdata2.b +%%PSL%%%%DATADIR%%/red/symhandl.b +%%PSL%%%%DATADIR%%/red/symint.b +%%PSL%%%%DATADIR%%/red/symmetry.b +%%PSL%%%%DATADIR%%/red/sympatch.b +%%PSL%%%%DATADIR%%/red/symwork.b +%%PSL%%%%DATADIR%%/red/systems.b +%%PSL%%%%DATADIR%%/red/table1.b +%%PSL%%%%DATADIR%%/red/table2.b +%%PSL%%%%DATADIR%%/red/table3.b +%%PSL%%%%DATADIR%%/red/tableaux.b +%%PSL%%%%DATADIR%%/red/tables.b +%%PSL%%%%DATADIR%%/red/tadjoint.b +%%PSL%%%%DATADIR%%/red/talp.b +%%PSL%%%%DATADIR%%/red/talpbnf.b +%%PSL%%%%DATADIR%%/red/talpmisc.b +%%PSL%%%%DATADIR%%/red/talpqe.b +%%PSL%%%%DATADIR%%/red/talpsiat.b +%%PSL%%%%DATADIR%%/red/talpsism.b +%%PSL%%%%DATADIR%%/red/taybasic.b +%%PSL%%%%DATADIR%%/red/tayconv.b +%%PSL%%%%DATADIR%%/red/taydiff.b +%%PSL%%%%DATADIR%%/red/tayexpnd.b +%%PSL%%%%DATADIR%%/red/tayfns.b +%%PSL%%%%DATADIR%%/red/tayfront.b +%%PSL%%%%DATADIR%%/red/tayimpl.b +%%PSL%%%%DATADIR%%/red/tayintrf.b +%%PSL%%%%DATADIR%%/red/tayintro.b +%%PSL%%%%DATADIR%%/red/taylor.b +%%PSL%%%%DATADIR%%/red/taypart.b +%%PSL%%%%DATADIR%%/red/tayprint.b +%%PSL%%%%DATADIR%%/red/tayrevrt.b +%%PSL%%%%DATADIR%%/red/taysimp.b +%%PSL%%%%DATADIR%%/red/taysubst.b +%%PSL%%%%DATADIR%%/red/tayutils.b +%%PSL%%%%DATADIR%%/red/tdconv.b +%%PSL%%%%DATADIR%%/red/templt.b +%%PSL%%%%DATADIR%%/red/tensor.b +%%PSL%%%%DATADIR%%/red/tensor1.b +%%PSL%%%%DATADIR%%/red/tensorio.b +%%PSL%%%%DATADIR%%/red/tidysqrt.b +%%PSL%%%%DATADIR%%/red/tmprint.b +%%PSL%%%%DATADIR%%/red/tok.b +%%PSL%%%%DATADIR%%/red/tools.b +%%PSL%%%%DATADIR%%/red/tools21.b +%%PSL%%%%DATADIR%%/red/torder.b +%%PSL%%%%DATADIR%%/red/torsionb.b +%%PSL%%%%DATADIR%%/red/tower.b +%%PSL%%%%DATADIR%%/red/tps.b +%%PSL%%%%DATADIR%%/red/tpscomp.b +%%PSL%%%%DATADIR%%/red/tpsconv.b +%%PSL%%%%DATADIR%%/red/tpsdom.b +%%PSL%%%%DATADIR%%/red/tpseval.b +%%PSL%%%%DATADIR%%/red/tpsfns.b +%%PSL%%%%DATADIR%%/red/tpsmisc.b +%%PSL%%%%DATADIR%%/red/tpsrev.b +%%PSL%%%%DATADIR%%/red/tpssum.b +%%PSL%%%%DATADIR%%/red/tr_gsmp1.lap +%%PSL%%%%DATADIR%%/red/transfns.b +%%PSL%%%%DATADIR%%/red/transfrm.b +%%PSL%%%%DATADIR%%/red/traverso.b +%%PSL%%%%DATADIR%%/red/trcase.b +%%PSL%%%%DATADIR%%/red/tri.b +%%PSL%%%%DATADIR%%/red/trialdiv.b +%%PSL%%%%DATADIR%%/red/triang.b +%%PSL%%%%DATADIR%%/red/trigint.b +%%PSL%%%%DATADIR%%/red/trigsimp.b +%%PSL%%%%DATADIR%%/red/trigsmp1.b +%%PSL%%%%DATADIR%%/red/trigsmp2.b +%%PSL%%%%DATADIR%%/red/turtle.b +%%PSL%%%%DATADIR%%/red/unify.b +%%PSL%%%%DATADIR%%/red/unihens.b +%%PSL%%%%DATADIR%%/red/utf8.b +%%PSL%%%%DATADIR%%/red/utils.b +%%PSL%%%%DATADIR%%/red/v3tools.b +%%PSL%%%%DATADIR%%/red/vardf.b +%%PSL%%%%DATADIR%%/red/vdp2dip.b +%%PSL%%%%DATADIR%%/red/vdpcom.b +%%PSL%%%%DATADIR%%/red/vecanlys.b +%%PSL%%%%DATADIR%%/red/vecpoly.b +%%PSL%%%%DATADIR%%/red/vect.b +%%PSL%%%%DATADIR%%/red/vectorop.b +%%PSL%%%%DATADIR%%/red/wedge.b +%%PSL%%%%DATADIR%%/red/weight.b +%%PSL%%%%DATADIR%%/red/where.b +%%PSL%%%%DATADIR%%/red/wstrass.b +%%PSL%%%%DATADIR%%/red/wu.b +%%PSL%%%%DATADIR%%/red/xaux.b +%%PSL%%%%DATADIR%%/red/xcolor.b +%%PSL%%%%DATADIR%%/red/xcrit.b +%%PSL%%%%DATADIR%%/red/xexcalc.b +%%PSL%%%%DATADIR%%/red/xgroeb.b +%%PSL%%%%DATADIR%%/red/xideal.b +%%PSL%%%%DATADIR%%/red/xpowers.b +%%PSL%%%%DATADIR%%/red/xread.b +%%PSL%%%%DATADIR%%/red/xreduct.b +%%PSL%%%%DATADIR%%/red/xstorage.b +%%PSL%%%%DATADIR%%/red/xvect.b +%%PSL%%%%DATADIR%%/red/yylex.b +%%PSL%%%%DATADIR%%/red/yyparse.b +%%PSL%%%%DATADIR%%/red/zeilberg.b +%%PSL%%%%DATADIR%%/red/zfactor.b +%%PSL%%%%DATADIR%%/red/zmodule.b +%%PSL%%%%DATADIR%%/red/ztrans.b +%%PSL%%%%DATADIR%%/red/ztrrul_s.lap +%%PSL%%%%DATADIR%%/red/ztrrules.b +%%PSL%%@dir red +%%DOCSDIR%%/manual.pdf +%%DOCSDIR%%/primer.pdf +%%DOCSDIR%%/insidereduce.pdf +%%DOCSDIR%%/sl.pdf |