Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Feb 2018 15:11:36 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r462702 - in head/math/reduce: . files
Message-ID:  <201802231511.w1NFBafL088087@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pfg (src committer)
Date: Fri Feb 23 15:11:36 2018
New Revision: 462702
URL: https://svnweb.freebsd.org/changeset/ports/462702

Log:
  math/reduce: update to latest snapshot and cleanup.
  
  Make clear we are building the Codemist Standard Lisp (CSL) version.
  
  Remove parts of the PSL version that were previously not very well
  maintained as they are being moved out into a separate port.
  
  PR:		224234
  Approved by:	pi

Added:
  head/math/reduce/files/patch-csl_fox_configure.ac
     - copied unchanged from r462701, head/math/reduce/files/patch-fox-configure.ac
Deleted:
  head/math/reduce/files/patch-fox-configure.ac
  head/math/reduce/files/redpsl.1
  head/math/reduce/files/runpsl.sh
Modified:
  head/math/reduce/Makefile
  head/math/reduce/distinfo
  head/math/reduce/pkg-descr
  head/math/reduce/pkg-plist

Modified: head/math/reduce/Makefile
==============================================================================
--- head/math/reduce/Makefile	Fri Feb 23 14:50:20 2018	(r462701)
+++ head/math/reduce/Makefile	Fri Feb 23 15:11:36 2018	(r462702)
@@ -2,27 +2,25 @@
 # $FreeBSD$
 
 PORTNAME=	reduce
-PORTVERSION=	20170124
+PORTVERSION=	20180117
 CATEGORIES=	math lang
 MASTER_SITES=	SF/${PORTNAME}-algebra/${SFSUBDIR}/
-DISTNAME=	Reduce-svn3877-src
+DISTNAME=	Reduce-svn4372-src
 
 MAINTAINER=	pfg@FreeBSD.org
-COMMENT=	Portable general-purpose computer algebra system
+COMMENT=	REDUCE Codemist Standard Lisp general-purpose computer system
 
 LICENSE=	BSD2CLAUSE
 
-RUN_DEPENDS=	gnuplot:math/gnuplot
-
 BROKEN_powerpc64=	fails to compile: arith01.cpp: 'statuc' does not name a type
 
-USES=		autoreconf:build gmake libtool ncurses
+USES=		autoreconf:build libtool gmake ncurses
 TARGET_SDIR=	${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL}
 CONFIGURE_ARGS=	--build=${TARGET_SDIR}
 WRKSRC=		${WRKDIR}/${DISTNAME}
 CPPFLAGS+=	-I${NCURSESINC}
 
-SFSUBDIR=	snapshot_2017-01-24
+SFSUBDIR=	snapshot_2018-01-17
 
 # Avoid GNU_CONFIGURE as it breaks staging
 HAS_CONFIGURE=	yes
@@ -30,38 +28,22 @@ 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
+RUN_DEPENDS=	gnuplot:math/gnuplot
 
-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+=	libpng.so:graphics/png \
 		libtiff.so:graphics/tiff
+USE_XORG=	x11 xext xproto xft
 USES+=		jpeg
+CONFIGURE_ARGS=	--with-csl
 CPPFLAGS+=	`freetype-config --cflags`
 LDFLAGS+=	`freetype-config --libs`
-.else
-ONLY_FOR_ARCHS=	amd64
-.endif
 
-.if ${PORT_OPTIONS:MCSL}
 REDUCE_BINS=	${WRKSRC}/cslbuild/${TARGET_SDIR}
-.else
-REDUCE_BINS=	${WRKSRC}/pslbuild/${TARGET_SDIR}
-.endif
 
+.include <bsd.port.options.mk>
+
 do-install:
 	${MKDIR} ${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
@@ -72,23 +54,11 @@ do-install:
 	${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR}
 	(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>

Modified: head/math/reduce/distinfo
==============================================================================
--- head/math/reduce/distinfo	Fri Feb 23 14:50:20 2018	(r462701)
+++ head/math/reduce/distinfo	Fri Feb 23 15:11:36 2018	(r462702)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1488224552
-SHA256 (Reduce-svn3877-src.tar.gz) = d6730ac0a88a510051ad36b069f5bd45d261229b4edead382c359d33a762f626
-SIZE (Reduce-svn3877-src.tar.gz) = 252749994
+TIMESTAMP = 1518056272
+SHA256 (Reduce-svn4372-src.tar.gz) = d4b8bbaf6d9108942d16b9c5bb9de6d3d5b8e8e5ad4116d4b7b8b1000c7f95a5
+SIZE (Reduce-svn4372-src.tar.gz) = 252484539

Copied: head/math/reduce/files/patch-csl_fox_configure.ac (from r462701, head/math/reduce/files/patch-fox-configure.ac)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/reduce/files/patch-csl_fox_configure.ac	Fri Feb 23 15:11:36 2018	(r462702, copy of r462701, head/math/reduce/files/patch-fox-configure.ac)
@@ -0,0 +1,11 @@
+--- csl/fox/configure.ac.orig	2017-02-27 17:32:49.915004000 -0500
++++ csl/fox/configure.ac	2017-02-27 17:35:58.712250000 -0500
+@@ -160,7 +160,7 @@ if test "x$enable_release" = "xyes" && t
+       CXXFLAGS="${CXXFLAGS} -Wuninitialized -ffast-math -fstrict-aliasing"
+       ;;
+   *)
+-      CXXFLAGS="${CXXFLAGS} -Wuninitialized -fomit-frame-pointer -ffast-math -fstrict-aliasing -finline-functions -fexpensive-optimizations"
++      CXXFLAGS="${CXXFLAGS} -Wuninitialized -fomit-frame-pointer -ffast-math -fstrict-aliasing -finline-functions"
+       LDFLAGS="-s ${LDFLAGS}"
+       ;;
+     esac

Modified: head/math/reduce/pkg-descr
==============================================================================
--- head/math/reduce/pkg-descr	Fri Feb 23 14:50:20 2018	(r462701)
+++ head/math/reduce/pkg-descr	Fri Feb 23 15:11:36 2018	(r462702)
@@ -1,24 +1,20 @@
+		REDUCE Codemist Standard Lisp (CSL) version
+
 REDUCE is an interactive system for general algebraic computations of
-interest to mathematicians, scientists and engineers. It has been
-produced by a collaborative effort involving many contributors. Its
-capabilities include:
+interest to mathematicians, scientists and engineers.
 
-*  expansion and ordering of polynomials and rational functions;
-*  substitutions and pattern matching in a wide variety of forms;
-*  automatic and user controlled simplification of expressions;
-*  calculations with symbolic matrices;
-*  arbitrary precision integer and real arithmetic;
-*  facilities for defining new functions and extending program syntax;
-*  analytic differentiation and integration;
-*  factorization of polynomials;
-*  facilities for the solution of a variety of algebraic equations;
-*  facilities for the output of expressions in a variety of formats;
-*  facilities for generating optimized numerical programs from symbolic input;
-*  calculations with a wide variety of special functions;
-*  Dirac matrix calculations of interest to high energy physicists.
-
-It is often used as an algebraic calculator for problems that are possible
-to do by hand. However,  REDUCE is designed to support calculations that
-are not feasible by hand.
+CSL is a newer Lisp system that continues to evolve and is now written 
+completely in C++, which makes it very easy to port to a new machine. 
+Like PSL, it is a faithful implementation of Standard Lisp and has been 
+optimized for running REDUCE. It requires a very small memory partition 
+for its Lisp support. Furthermore, most of the REDUCE facilities are 
+supported as machine independent pseudocode, which is quite compact. In 
+the worst case, the performance of this system is about a factor of two 
+slower than PSL, though in many cases it matches PSL performance. 
+However, the memory use is smaller. All CSL versions are distributed with 
+sufficient CSL support to run on the given computing system. This is also
+an ideal system for those wishing to embed algebraic calculations in a C 
+or C++ programming environment. The developer of CSL before it became 
+Open Source was Codemist Ltd.
 
 WWW: http://www.reduce-algebra.com/

Modified: head/math/reduce/pkg-plist
==============================================================================
--- head/math/reduce/pkg-plist	Fri Feb 23 14:50:20 2018	(r462701)
+++ head/math/reduce/pkg-plist	Fri Feb 23 15:11:36 2018	(r462702)
@@ -1,1231 +1,112 @@
-%%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/cmuntt.pfb
-%%CSL%%%%DATADIR%%/reduce.fonts/cmuntt.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/cde.b
-%%PSL%%%%DATADIR%%/red/cde_ansatz.b
-%%PSL%%%%DATADIR%%/red/cde_cdcalc.b
-%%PSL%%%%DATADIR%%/red/cde_cdiff.b
-%%PSL%%%%DATADIR%%/red/cde_diffcon.b
-%%PSL%%%%DATADIR%%/red/cde_init.b
-%%PSL%%%%DATADIR%%/red/cde_jetspace.b
-%%PSL%%%%DATADIR%%/red/cde_parametric.b
-%%PSL%%%%DATADIR%%/red/cde_tools.b
-%%PSL%%%%DATADIR%%/red/cde_totalder.b
-%%PSL%%%%DATADIR%%/red/cde_varcalc.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/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/crresu.b
-%%PSL%%%%DATADIR%%/red/crstart.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/genparserprint.b
-%%PSL%%%%DATADIR%%/red/genpurfn.b
-%%PSL%%%%DATADIR%%/red/gentens.b
-%%PSL%%%%DATADIR%%/red/gentran.b
-%%PSL%%%%DATADIR%%/red/genus.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

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802231511.w1NFBafL088087>