Date: Fri, 23 Feb 2018 20:23:26 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r462743 - in head/math: . reduce-psl reduce-psl/files Message-ID: <201802232023.w1NKNQZb048739@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Fri Feb 23 20:23:26 2018 New Revision: 462743 URL: https://svnweb.freebsd.org/changeset/ports/462743 Log: New port: math/reduce-psl REDUCE Portable Standard Lisp (PSL) REDUCE is an interactive system for general algebraic computations of interest to mathematicians, scientists and engineers. PSL was the original implementation of Standard Lisp, but now contains many more facilities. It is quite efficient in its use of both space and time, and has been optimized for algebraic computation. All PSL versions of REDUCE are distributed with sufficient PSL support to run on the given computing system. PSL is supported on many architectures and is an ideal system for those wanting to run REDUCE as a stand-alone system. The principal developer of PSL before it became Open Source was the Konrad Zuse Center, Berlin (ZIB). 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. WWW: http://www.reduce-algebra.com/ PR: 226098 Submitted by: pfg Added: head/math/reduce-psl/ - copied from r462710, head/math/reduce/ head/math/reduce-psl/files/redpsl.1 (contents, props changed) head/math/reduce-psl/files/runpsl.sh (contents, props changed) head/math/reduce-psl/pkg-plist.amd64 (contents, props changed) head/math/reduce-psl/pkg-plist.i386 (contents, props changed) Deleted: head/math/reduce-psl/files/patch-csl_fox_configure.ac head/math/reduce-psl/files/redcsl.1 head/math/reduce-psl/files/runcsl.sh head/math/reduce-psl/pkg-plist Modified: head/math/Makefile head/math/reduce-psl/Makefile head/math/reduce-psl/pkg-descr Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Feb 23 20:12:51 2018 (r462742) +++ head/math/Makefile Fri Feb 23 20:23:26 2018 (r462743) @@ -689,6 +689,7 @@ SUBDIR += randlib SUBDIR += rapid SUBDIR += reduce + SUBDIR += reduce-psl SUBDIR += reed-solomon SUBDIR += rexx-regmath SUBDIR += rkward-kde4 Modified: head/math/reduce-psl/Makefile ============================================================================== --- head/math/reduce/Makefile Fri Feb 23 17:52:29 2018 (r462710) +++ head/math/reduce-psl/Makefile Fri Feb 23 20:23:26 2018 (r462743) @@ -4,23 +4,17 @@ PORTNAME= reduce PORTVERSION= 20180117 CATEGORIES= math lang -MASTER_SITES= SF/${PORTNAME}-algebra/${SFSUBDIR}/ +MASTER_SITES= SF/reduce-algebra/${SFSUBDIR}/ +PKGNAMESUFFIX= -psl DISTNAME= Reduce-svn4372-src MAINTAINER= pfg@FreeBSD.org -COMMENT= REDUCE Codemist Standard Lisp general-purpose computer system +COMMENT= REDUCE Portable Standard Lisp general-purpose algebra system LICENSE= BSD2CLAUSE -BROKEN_powerpc64= fails to compile: arith01.cpp: 'statuc' does not name a type +ONLY_FOR_ARCHS= amd64 i386 -RUN_DEPENDS= gnuplot:math/gnuplot - -LIB_DEPENDS+= libpng.so:graphics/png \ - libtiff.so:graphics/tiff - -MAKE_JOBS_UNSAFE= yes - SFSUBDIR= snapshot_2018-01-17 USES= autoreconf:build libtool gmake ncurses @@ -33,31 +27,30 @@ CPPFLAGS+= -I${NCURSESINC} HAS_CONFIGURE= yes ALL_TARGET= -USE_XORG= x11 xext xproto xft -USES+= jpeg -CONFIGURE_ARGS= --with-csl -CPPFLAGS+= `freetype-config --cflags` -LDFLAGS+= `freetype-config --libs` +MAKE_JOBS_UNSAFE= yes -REDUCE_BINS= ${WRKSRC}/cslbuild/${TARGET_SDIR} +PLIST= ${.CURDIR}/pkg-plist.${ARCH} +CONFIGURE_ARGS= --with-psl + +REDUCE_BINS= ${WRKSRC}/pslbuild/${TARGET_SDIR} + .include <bsd.port.options.mk> do-install: ${MKDIR} ${STAGEDIR}${DATADIR} - ${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 ${REDUCE_BINS}/csl/reduce.doc && ${COPYTREE_SHARE} . \ - ${STAGEDIR}${DATADIR}/reduce.doc) - ${MKDIR} ${STAGEDIR}${PREFIX}/${FONTDIR} - (cd ${REDUCE_BINS}/csl/reduce.fonts && ${COPYTREE_SHARE} . \ - ${STAGEDIR}${DATADIR}/reduce.fonts) + ${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) ${MKDIR} ${STAGEDIR}${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/doc/manual/manual.pdf\ - ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc//util/r38.pdf \ + ${STAGEDIR}${DOCSDIR}/manual.pdf ${INSTALL_DATA} ${WRKSRC}/doc/primers/*.pdf \ ${STAGEDIR}${DOCSDIR} Added: head/math/reduce-psl/files/redpsl.1 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/reduce-psl/files/redpsl.1 Fri Feb 23 20:23:26 2018 (r462743) @@ -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. +. +. Added: head/math/reduce-psl/files/runpsl.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/reduce-psl/files/runpsl.sh Fri Feb 23 20:23:26 2018 (r462743) @@ -0,0 +1,16 @@ +#! /bin/sh + +case `uname -m` in +amd64) + STORE=2000 + ;; +i386) + STORE=16000000 + ;; +esac + +bin="/usr/local/share/reduce/psl/bpsl" +img="/usr/local/share/reduce/red/reduce.img" + +exec $bin -td $STORE -f $img $* + Modified: head/math/reduce-psl/pkg-descr ============================================================================== --- head/math/reduce/pkg-descr Fri Feb 23 17:52:29 2018 (r462710) +++ head/math/reduce-psl/pkg-descr Fri Feb 23 20:23:26 2018 (r462743) @@ -1,20 +1,19 @@ - REDUCE Codemist Standard Lisp (CSL) version + REDUCE Portable Standard Lisp (PSL) REDUCE is an interactive system for general algebraic computations of -interest to mathematicians, scientists and engineers. +interest to mathematicians, scientists and engineers. -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. +PSL was the original implementation of Standard Lisp, but now contains +many more facilities. It is quite efficient in its use of both space and +time, and has been optimized for algebraic computation. All PSL versions +of REDUCE are distributed with sufficient PSL support to run on the given +computing system. PSL is supported on many architectures and is an ideal +system for those wanting to run REDUCE as a stand-alone system. The +principal developer of PSL before it became Open Source was the Konrad +Zuse Center, Berlin (ZIB). + +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. WWW: http://www.reduce-algebra.com/ Added: head/math/reduce-psl/pkg-plist.amd64 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/reduce-psl/pkg-plist.amd64 Fri Feb 23 20:23:26 2018 (r462743) @@ -0,0 +1,1129 @@ +bin/redpsl +man/man1/redpsl.1.gz +%%PORTDOCS%%%%DOCSDIR%%/insidereduce.pdf +%%PORTDOCS%%%%DOCSDIR%%/manual.pdf +%%PORTDOCS%%%%DOCSDIR%%/primer.pdf +%%PORTDOCS%%%%DOCSDIR%%/sl.pdf +%%DATADIR%%/psl/386-ext.b +%%DATADIR%%/psl/64 +%%DATADIR%%/psl/AMD64-cmac.b +%%DATADIR%%/psl/AMD64-comp.b +%%DATADIR%%/psl/AMD64-lap.b +%%DATADIR%%/psl/AMD64-spec.b +%%DATADIR%%/psl/addr2id.b +%%DATADIR%%/psl/allocators.b +%%DATADIR%%/psl/apply-lap.b +%%DATADIR%%/psl/arithmetic.b +%%DATADIR%%/psl/association.b +%%DATADIR%%/psl/autoload-tr.b +%%DATADIR%%/psl/autoload.b +%%DATADIR%%/psl/backquote.b +%%DATADIR%%/psl/backtrace.b +%%DATADIR%%/psl/base-io.b +%%DATADIR%%/psl/big-faslend.b +%%DATADIR%%/psl/big.b +%%DATADIR%%/psl/bind-macros.b +%%DATADIR%%/psl/binding.b +%%DATADIR%%/psl/bpsl +%%DATADIR%%/psl/break.b +%%DATADIR%%/psl/build.b +%%DATADIR%%/psl/c-template.b +%%DATADIR%%/psl/carcdr.b +%%DATADIR%%/psl/carcdrnil.b +%%DATADIR%%/psl/catch-throw.b +%%DATADIR%%/psl/char-io.b +%%DATADIR%%/psl/char-macro.b +%%DATADIR%%/psl/chars.b +%%DATADIR%%/psl/clcomp.b +%%DATADIR%%/psl/clcomp1.b +%%DATADIR%%/psl/comasm.b +%%DATADIR%%/psl/common.b +%%DATADIR%%/psl/comp-decls.b +%%DATADIR%%/psl/compat.b +%%DATADIR%%/psl/compiler.b +%%DATADIR%%/psl/compsupport.b +%%DATADIR%%/psl/cond-macros.b +%%DATADIR%%/psl/cons-mkvect.b +%%DATADIR%%/psl/constants.b +%%DATADIR%%/psl/cont-error.b +%%DATADIR%%/psl/copiers.b +%%DATADIR%%/psl/copying-gc.b +%%DATADIR%%/psl/datamachine.b +%%DATADIR%%/psl/debug.b +%%DATADIR%%/psl/def-smacro.b +%%DATADIR%%/psl/defconst.b +%%DATADIR%%/psl/defmacro.b +%%DATADIR%%/psl/defmacro1.b +%%DATADIR%%/psl/defmacro2.b +%%DATADIR%%/psl/defobject.b +%%DATADIR%%/psl/disassemble.b +%%DATADIR%%/psl/double.b +%%DATADIR%%/psl/double32.b +%%DATADIR%%/psl/dskin.b +%%DATADIR%%/psl/dumplisp.b +%%DATADIR%%/psl/easy-non-sl.b +%%DATADIR%%/psl/easy-sl.b +%%DATADIR%%/psl/environment.b +%%DATADIR%%/psl/equal.b +%%DATADIR%%/psl/error-eset.b +%%DATADIR%%/psl/error-hand.b +%%DATADIR%%/psl/eval-apply.b +%%DATADIR%%/psl/eval-when.b +%%DATADIR%%/psl/evalhook.b +%%DATADIR%%/psl/explode-com.b +%%DATADIR%%/psl/f-evectors.b +%%DATADIR%%/psl/f-strings.b +%%DATADIR%%/psl/f-vectors.b +%%DATADIR%%/psl/fasl-decls.b +%%DATADIR%%/psl/faslout.b +%%DATADIR%%/psl/fast-chars.b +%%DATADIR%%/psl/fast-int.b +%%DATADIR%%/psl/fast-math.b +%%DATADIR%%/psl/fast-vector.b +%%DATADIR%%/psl/fc-indirect.b +%%DATADIR%%/psl/fcomp.b +%%DATADIR%%/psl/find.b +%%DATADIR%%/psl/fixup.b +%%DATADIR%%/psl/fluid-globl.b +%%DATADIR%%/psl/for-macro.b +%%DATADIR%%/psl/funct-prims.b +%%DATADIR%%/psl/get-options.b +%%DATADIR%%/psl/gsort.b +%%DATADIR%%/psl/hash-decls.b +%%DATADIR%%/psl/hcons.b +%%DATADIR%%/psl/helferlein.b +%%DATADIR%%/psl/if-system.b +%%DATADIR%%/psl/if.b +%%DATADIR%%/psl/init-file.b +%%DATADIR%%/psl/inum.b +%%DATADIR%%/psl/io-data.b +%%DATADIR%%/psl/io-decls.b +%%DATADIR%%/psl/io-errors.b +%%DATADIR%%/psl/io-extens.b +%%DATADIR%%/psl/iter-macros.b +%%DATADIR%%/psl/knowntocomp.b +%%DATADIR%%/psl/l2cdatacon.b +%%DATADIR%%/psl/lap-to-asm.b +%%DATADIR%%/psl/lap.b +%%DATADIR%%/psl/lisp-macros.b +%%DATADIR%%/psl/load-psl.b +%%DATADIR%%/psl/load.b +%%DATADIR%%/psl/loop-macros.b +%%DATADIR%%/psl/macroexpand.b +%%DATADIR%%/psl/mathlib.b +%%DATADIR%%/psl/mbarith.b +%%DATADIR%%/psl/merge-sort.b +%%DATADIR%%/psl/misc-macros.b +%%DATADIR%%/psl/mstruct.b +%%DATADIR%%/psl/muls.b +%%DATADIR%%/psl/muls32.b +%%DATADIR%%/psl/nbarith.b +%%DATADIR%%/psl/nbig.b +%%DATADIR%%/psl/nbig0.b +%%DATADIR%%/psl/nbig30.b +%%DATADIR%%/psl/nbig30a.b +%%DATADIR%%/psl/nbig32.b +%%DATADIR%%/psl/nbig32a.b +%%DATADIR%%/psl/nbittab.b +%%DATADIR%%/psl/nstruct.b +%%DATADIR%%/psl/numeric-ops.b +%%DATADIR%%/psl/obj-const.b +%%DATADIR%%/psl/obj-dflavor.b +%%DATADIR%%/psl/obj-dmethod.b +%%DATADIR%%/psl/obj-hash.b +%%DATADIR%%/psl/obj-lib.b +%%DATADIR%%/psl/obj-send.b +%%DATADIR%%/psl/objects.b +%%DATADIR%%/psl/objinstance.b +%%DATADIR%%/psl/oblist.b +%%DATADIR%%/psl/onoff.b +%%DATADIR%%/psl/open-close.b +%%DATADIR%%/psl/other-io.b +%%DATADIR%%/psl/others-sl.b +%%DATADIR%%/psl/p1-decls.b +%%DATADIR%%/psl/pass-1-lap.b +%%DATADIR%%/psl/pass-1.b +%%DATADIR%%/psl/pass-2-3.b +%%DATADIR%%/psl/pipes.b +%%DATADIR%%/psl/pp-file.b +%%DATADIR%%/psl/pp-lisp.b +%%DATADIR%%/psl/pp.b +%%DATADIR%%/psl/printers.b +%%DATADIR%%/psl/printf.b +%%DATADIR%%/psl/prog-friend.b +%%DATADIR%%/psl/prop-list.b +%%DATADIR%%/psl/pslcomp.b +%%DATADIR%%/psl/pslcompat.b +%%DATADIR%%/psl/putd-getd.b +%%DATADIR%%/psl/putprint.b +%%DATADIR%%/psl/pvm.b +%%DATADIR%%/psl/qualified-timing.b +%%DATADIR%%/psl/rds-wrs.b +%%DATADIR%%/psl/read-macros.b +%%DATADIR%%/psl/read-utils.b +%%DATADIR%%/psl/read.b +%%DATADIR%%/psl/read1macros.b +%%DATADIR%%/psl/read2macros.b +%%DATADIR%%/psl/rprint.b +%%DATADIR%%/psl/s-strings.b +%%DATADIR%%/psl/s-vectors.b +%%DATADIR%%/psl/scan-table.b +%%DATADIR%%/psl/sequence.b +%%DATADIR%%/psl/set-macros.b +%%DATADIR%%/psl/set1-macros.b +%%DATADIR%%/psl/set2-macros.b +%%DATADIR%%/psl/sets.b +%%DATADIR%%/psl/shmem.b +%%DATADIR%%/psl/spy.b +%%DATADIR%%/psl/static-gc.b +%%DATADIR%%/psl/step.b +%%DATADIR%%/psl/str-input.b +%%DATADIR%%/psl/str-search.b +%%DATADIR%%/psl/string-gen.b +%%DATADIR%%/psl/strings.b +%%DATADIR%%/psl/symbol-vals.b +%%DATADIR%%/psl/symget.b +%%DATADIR%%/psl/sys-consts.b +%%DATADIR%%/psl/sys-date.b +%%DATADIR%%/psl/sys-dm.b +%%DATADIR%%/psl/sys-extras.b +%%DATADIR%%/psl/sys-faslin.b +%%DATADIR%%/psl/sys-gc.b +%%DATADIR%%/psl/sys-io.b +%%DATADIR%%/psl/sys-macros.b +%%DATADIR%%/psl/syslisp-syn.b +%%DATADIR%%/psl/syslisp.b +%%DATADIR%%/psl/tags.b +%%DATADIR%%/psl/timc.b +%%DATADIR%%/psl/token-decls.b +%%DATADIR%%/psl/token-scan.b +%%DATADIR%%/psl/top-loop.b +%%DATADIR%%/psl/trap.b +%%DATADIR%%/psl/type-conver.b +%%DATADIR%%/psl/type-error.b +%%DATADIR%%/psl/unixAMD64-asm.b +%%DATADIR%%/psl/useful.b +%%DATADIR%%/psl/vector-fix.b +%%DATADIR%%/psl/vectors.b +%%DATADIR%%/psl/vfvect.b +%%DATADIR%%/psl/wdeclare.b +%%DATADIR%%/psl/wfloat.b +%%DATADIR%%/psl/write-float.b +%%DATADIR%%/psl/zbig.b +%%DATADIR%%/red/_definta.lap +%%DATADIR%%/red/_defintb.lap +%%DATADIR%%/red/_definte.lap +%%DATADIR%%/red/_defintf.lap +%%DATADIR%%/red/_definti.lap +%%DATADIR%%/red/_defintk.lap +%%DATADIR%%/red/_susy2.lap +%%DATADIR%%/red/a2dip.b +%%DATADIR%%/red/acfsf.b +%%DATADIR%%/red/acfsfbnf.b +%%DATADIR%%/red/acfsfgs.b +%%DATADIR%%/red/acfsfmisc.b +%%DATADIR%%/red/acfsfqe.b +%%DATADIR%%/red/acfsfsiat.b +%%DATADIR%%/red/acfsfsism.b +%%DATADIR%%/red/afactor.b +%%DATADIR%%/red/alg-form.b +%%DATADIR%%/red/alg.b +%%DATADIR%%/red/algbool.b +%%DATADIR%%/red/algdcl.b +%%DATADIR%%/red/algfn.b +%%DATADIR%%/red/algint.b +%%DATADIR%%/red/allroot.b +%%DATADIR%%/red/alphas.b +%%DATADIR%%/red/antisubs.b +%%DATADIR%%/red/applysym.b +%%DATADIR%%/red/approx.b +%%DATADIR%%/red/arinv.b +%%DATADIR%%/red/arith.b +%%DATADIR%%/red/arnum.b +%%DATADIR%%/red/array.b +%%DATADIR%%/red/assert.b +%%DATADIR%%/red/assertcheckfn.b +%%DATADIR%%/red/assertproc.b +%%DATADIR%%/red/assist.b +%%DATADIR%%/red/atensor.b +%%DATADIR%%/red/auxitens.b +%%DATADIR%%/red/avector.b +%%DATADIR%%/red/backtrck.b +%%DATADIR%%/red/baglist.b +%%DATADIR%%/red/bareiss.b +%%DATADIR%%/red/bas.b +%%DATADIR%%/red/basis.b +%%DATADIR%%/red/bcoeff.b +%%DATADIR%%/red/bcsf.b +%%DATADIR%%/red/bfauxil.b +%%DATADIR%%/red/bfdoer.b +%%DATADIR%%/red/bfdoer2.b +%%DATADIR%%/red/bfelem.b +%%DATADIR%%/red/bibasis.b +%%DATADIR%%/red/bibasis_interface.b +%%DATADIR%%/red/bibasis_involutive.b +%%DATADIR%%/red/bibasis_janet_tree.b +%%DATADIR%%/red/bibasis_monom.b +%%DATADIR%%/red/bibasis_polynom.b +%%DATADIR%%/red/bibasis_qset.b +%%DATADIR%%/red/bibasis_triple.b +%%DATADIR%%/red/bibasis_tset.b +%%DATADIR%%/red/bigmodp.b +%%DATADIR%%/red/block.b +%%DATADIR%%/red/block4.b +%%DATADIR%%/red/boolean.b +%%DATADIR%%/red/bootstrap.img +%%DATADIR%%/red/bounds.b +%%DATADIR%%/red/bquote.b +%%DATADIR%%/red/breduce.b +%%DATADIR%%/red/buchbg.b +%%DATADIR%%/red/cali.b +%%DATADIR%%/red/calimat.b +%%DATADIR%%/red/camal.b +%%DATADIR%%/red/cantens.b +%%DATADIR%%/red/cde.b +%%DATADIR%%/red/cde_ansatz.b +%%DATADIR%%/red/cde_cdcalc.b +%%DATADIR%%/red/cde_cdiff.b +%%DATADIR%%/red/cde_diffcon.b +%%DATADIR%%/red/cde_init.b +%%DATADIR%%/red/cde_jetspace.b +%%DATADIR%%/red/cde_parametric.b +%%DATADIR%%/red/cde_superfun.b +%%DATADIR%%/red/cde_tools.b +%%DATADIR%%/red/cde_totalder.b +%%DATADIR%%/red/cde_varcalc.b +%%DATADIR%%/red/cde_vectorfield.b +%%DATADIR%%/red/cdiff.b +%%DATADIR%%/red/cdiffx.b +%%DATADIR%%/red/cedit.b +%%DATADIR%%/red/cface.b +%%DATADIR%%/red/cgb.b +%%DATADIR%%/red/changevr.b +%%DATADIR%%/red/charname.b +%%DATADIR%%/red/charpol.b +%%DATADIR%%/red/chebysh.b +%%DATADIR%%/red/checkind.b +%%DATADIR%%/red/cholesky.b +%%DATADIR%%/red/cl.b +%%DATADIR%%/red/clbnf.b +%%DATADIR%%/red/clmisc.b +%%DATADIR%%/red/clnf.b +%%DATADIR%%/red/clprl.b +%%DATADIR%%/red/clqe.b +%%DATADIR%%/red/clresolv.b +%%DATADIR%%/red/clsimpl.b +%%DATADIR%%/red/cltab.b +%%DATADIR%%/red/coates.b +%%DATADIR%%/red/coatesid.b +%%DATADIR%%/red/codad1.b +%%DATADIR%%/red/codad2.b +%%DATADIR%%/red/codctl.b +%%DATADIR%%/red/coddec.b +%%DATADIR%%/red/coddom.b +%%DATADIR%%/red/codgen.b +%%DATADIR%%/red/codhrn.b +%%DATADIR%%/red/codmat.b +%%DATADIR%%/red/codopt.b +%%DATADIR%%/red/codpri.b +%%DATADIR%%/red/codstr.b +%%DATADIR%%/red/coeff.b +%%DATADIR%%/red/coeffts.b +%%DATADIR%%/red/cofactor.b +%%DATADIR%%/red/comfac.b +%%DATADIR%%/red/compact.b +%%DATADIR%%/red/compactf.b +%%DATADIR%%/red/compat.b +%%DATADIR%%/red/complx.b +%%DATADIR%%/red/complxp.b +%%DATADIR%%/red/compopr.b +%%DATADIR%%/red/comprd.b +%%DATADIR%%/red/condense.b +%%DATADIR%%/red/conj.b +%%DATADIR%%/red/conlaw.b +%%DATADIR%%/red/conlaw0.b +%%DATADIR%%/red/conlaw1.b +%%DATADIR%%/red/conlaw2.b +%%DATADIR%%/red/conlaw3.b +%%DATADIR%%/red/conlaw4.b +%%DATADIR%%/red/constre.b +%%DATADIR%%/red/contact.b +%%DATADIR%%/red/contents.b +%%DATADIR%%/red/contfr.b +%%DATADIR%%/red/contfrac.b +%%DATADIR%%/red/control.b +%%DATADIR%%/red/contrtns.b +%%DATADIR%%/red/convert.b +%%DATADIR%%/red/cpxrn.b +%%DATADIR%%/red/crack.b +%%DATADIR%%/red/crdec.b +%%DATADIR%%/red/crdiffelim.b +%%DATADIR%%/red/crelem.b +%%DATADIR%%/red/crequsol.b +%%DATADIR%%/red/crgb.b +%%DATADIR%%/red/crgensep.b +%%DATADIR%%/red/crhomalg.b +%%DATADIR%%/red/crident.b +%%DATADIR%%/red/crineq.b +%%DATADIR%%/red/crinit.b +%%DATADIR%%/red/crint.b +%%DATADIR%%/red/crlinalg.b +%%DATADIR%%/red/crmain.b +%%DATADIR%%/red/crpvm.b +%%DATADIR%%/red/crresu.b +%%DATADIR%%/red/crsep.b +%%DATADIR%%/red/crshort.b +%%DATADIR%%/red/crsimp.b +%%DATADIR%%/red/crsimpso.b +%%DATADIR%%/red/crstart.b +%%DATADIR%%/red/crstruc.b +%%DATADIR%%/red/crsubsys.b +%%DATADIR%%/red/crtrafo.b +%%DATADIR%%/red/crunder.b +%%DATADIR%%/red/crutil.b +%%DATADIR%%/red/csolve.b +%%DATADIR%%/red/ctintro.b +%%DATADIR%%/red/cvit.b +%%DATADIR%%/red/cvitmap.b +%%DATADIR%%/red/dcfsf.b +%%DATADIR%%/red/dcfsfkacem.b +%%DATADIR%%/red/dcfsfmisc.b +%%DATADIR%%/red/dcfsfqe.b +%%DATADIR%%/red/dcfsfsism.b +%%DATADIR%%/red/decompos.b +%%DATADIR%%/red/decrep.b +%%DATADIR%%/red/defint.b +%%DATADIR%%/red/defint0.b +%%DATADIR%%/red/definta.b +%%DATADIR%%/red/defintb.b +%%DATADIR%%/red/defintc.b +%%DATADIR%%/red/defintd.b +%%DATADIR%%/red/definte.b +%%DATADIR%%/red/defintf.b +%%DATADIR%%/red/defintg.b +%%DATADIR%%/red/definth.b +%%DATADIR%%/red/definti.b +%%DATADIR%%/red/defintj.b +%%DATADIR%%/red/defintk.b +%%DATADIR%%/red/defintx.b +%%DATADIR%%/red/degform.b +%%DATADIR%%/red/degsets.b +%%DATADIR%%/red/depend.b +%%DATADIR%%/red/desir.b +%%DATADIR%%/red/det.b +%%DATADIR%%/red/df2q.b +%%DATADIR%%/red/dfpart.b +%%DATADIR%%/red/dfprin.b +%%DATADIR%%/red/diff.b +%%DATADIR%%/red/dilog.b +%%DATADIR%%/red/dint.b +%%DATADIR%%/red/dip2a.b +%%DATADIR%%/red/dipoly.b +%%DATADIR%%/red/dipoly1.b +%%DATADIR%%/red/dipprint.b +%%DATADIR%%/red/dipvars.b +%%DATADIR%%/red/discret.b +%%DATADIR%%/red/disjoin.b +%%DATADIR%%/red/distrib.b +%%DATADIR%%/red/divide.b +%%DATADIR%%/red/dmode.b +%%DATADIR%%/red/dmodeop.b +%%DATADIR%%/red/dp.b +%%DATADIR%%/red/dpmat.b +%%DATADIR%%/red/dpoly.b +%%DATADIR%%/red/driver.b +%%DATADIR%%/red/dummy.b +%%DATADIR%%/red/dummy1.b +%%DATADIR%%/red/dummy2.b +%%DATADIR%%/red/dummycnt.b +%%DATADIR%%/red/dvfsf.b +%%DATADIR%%/red/dvfsfmisc.b +%%DATADIR%%/red/dvfsfqe.b +%%DATADIR%%/red/dvfsfsiat.b +%%DATADIR%%/red/dvfsfsism.b +%%DATADIR%%/red/eds.b +%%DATADIR%%/red/edsaux.b +%%DATADIR%%/red/edscfrm.b +%%DATADIR%%/red/edsequiv.b +%%DATADIR%%/red/edseval.b +%%DATADIR%%/red/edsexptl.b +%%DATADIR%%/red/edsnorml.b +%%DATADIR%%/red/edspatch.b +%%DATADIR%%/red/edspde.b +%%DATADIR%%/red/edssolve.b +%%DATADIR%%/red/edsuser.b +%%DATADIR%%/red/elem.b +%%DATADIR%%/red/element.b +%%DATADIR%%/red/entry.b +%%DATADIR%%/red/eqn.b +%%DATADIR%%/red/evalmaps.b +%%DATADIR%%/red/exaux.b +%%DATADIR%%/red/excalc.b +%%DATADIR%%/red/exdf.b +%%DATADIR%%/red/exintro.b +%%DATADIR%%/red/exlists.b +%%DATADIR%%/red/expon.b +%%DATADIR%%/red/expres.b +%%DATADIR%%/red/exptchk.b +%%DATADIR%%/red/exptf.b +%%DATADIR%%/red/expvec.b +%%DATADIR%%/red/extops.b +%%DATADIR%%/red/extout.b +%%DATADIR%%/red/ezgcd.b +%%DATADIR%%/red/ezgcdf.b +%%DATADIR%%/red/facform.b +%%DATADIR%%/red/facmisc.b +%%DATADIR%%/red/facmod.b +%%DATADIR%%/red/facprim.b +%%DATADIR%%/red/facstr.b +%%DATADIR%%/red/factor.b +%%DATADIR%%/red/facuni.b +%%DATADIR%%/red/farith.b +%%DATADIR%%/red/fastmath.b +%%DATADIR%%/red/fastmod.b +%%DATADIR%%/red/fide.b +%%DATADIR%%/red/fide1.b +%%DATADIR%%/red/findmagc.b +%%DATADIR%%/red/findres.b +%%DATADIR%%/red/finitise.b +%%DATADIR%%/red/fixes2.b +%%DATADIR%%/red/fixsubf.b +%%DATADIR%%/red/fmprint.b +%%DATADIR%%/red/for88.b +%%DATADIR%%/red/forall.b +%%DATADIR%%/red/forall4.b +%%DATADIR%%/red/forder.b +%%DATADIR%%/red/form.b +%%DATADIR%%/red/form4.b +%%DATADIR%%/red/forstat.b +%%DATADIR%%/red/forstat4.b +%%DATADIR%%/red/fortpri.b +%%DATADIR%%/red/fourdom.b +%%DATADIR%%/red/fourplus.b +%%DATADIR%%/red/fps.b +%%DATADIR%%/red/fracdi.b +%%DATADIR%%/red/frames.b +%%DATADIR%%/red/froben.b +%%DATADIR%%/red/fsimplex.b +%%DATADIR%%/red/gauss.b +%%DATADIR%%/red/gb.b +%%DATADIR%%/red/gbsc.b +%%DATADIR%%/red/gcd.b +%%DATADIR%%/red/gcref.b +%%DATADIR%%/red/general.b +%%DATADIR%%/red/genmod.b +%%DATADIR%%/red/genparser.b +%%DATADIR%%/red/genparserprint.b +%%DATADIR%%/red/genpurfn.b +%%DATADIR%%/red/gentens.b +%%DATADIR%%/red/gentran.b +%%DATADIR%%/red/genus.b +%%DATADIR%%/red/geoprover.b +%%DATADIR%%/red/ghyper.b +%%DATADIR%%/red/gint.b +%%DATADIR%%/red/glexconv.b +%%DATADIR%%/red/glmat.b +%%DATADIR%%/red/glsolve.b +%%DATADIR%%/red/gnuintfc.b +%%DATADIR%%/red/gnupldrv.b +%%DATADIR%%/red/gnuplot.b +%%DATADIR%%/red/goutput.b +%%DATADIR%%/red/gparser.b +%%DATADIR%%/red/gramschm.b +%%DATADIR%%/red/grassman.b +%%DATADIR%%/red/greduo.b +%%DATADIR%%/red/grinter2.b +%%DATADIR%%/red/grinterf.b +%%DATADIR%%/red/groeb.b +%%DATADIR%%/red/groebcri.b +%%DATADIR%%/red/groebf.b +%%DATADIR%%/red/groebfac.b +%%DATADIR%%/red/groebidq.b +%%DATADIR%%/red/groebman.b +%%DATADIR%%/red/groebmes.b +%%DATADIR%%/red/groebner.b +%%DATADIR%%/red/groebnr2.b +%%DATADIR%%/red/groebopt.b +%%DATADIR%%/red/groebrst.b +%%DATADIR%%/red/groebsea.b +%%DATADIR%%/red/groebsor.b +%%DATADIR%%/red/groebspa.b +%%DATADIR%%/red/groebtra.b +%%DATADIR%%/red/groesolv.b +%%DATADIR%%/red/groeweak.b +%%DATADIR%%/red/guardian.b +%%DATADIR%%/red/guardianprint.b +%%DATADIR%%/red/guardianschemes.b +%%DATADIR%%/red/hacksqrt.b +%%DATADIR%%/red/halfangl.b +%%DATADIR%%/red/harmonic.b +%%DATADIR%%/red/hcvctors.b +%%DATADIR%%/red/hdiff.b +%%DATADIR%%/red/helpasst.b +%%DATADIR%%/red/hephys.b +%%DATADIR%%/red/hf.b +%%DATADIR%%/red/hggroeb.b +%%DATADIR%%/red/hgrsolve.b +%%DATADIR%%/red/hilbertp.b +%%DATADIR%%/red/hilberts.b +%%DATADIR%%/red/hille.b +%%DATADIR%%/red/hodge.b +%%DATADIR%%/red/homog.b +%%DATADIR%%/red/horner.b +%%DATADIR%%/red/hsub.b +%%DATADIR%%/red/hugo +%%DATADIR%%/red/hurwp.b +%%DATADIR%%/red/ibalp.b +%%DATADIR%%/red/ibalpkapur.b +%%DATADIR%%/red/ibalpqsat.b +%%DATADIR%%/red/ibasics.b +%%DATADIR%%/red/ideals.b +%%DATADIR%%/red/idepend.b +%%DATADIR%%/red/idexf.b +%%DATADIR%%/red/iimet.b +%%DATADIR%%/red/imageset.b +%%DATADIR%%/red/indices.b +%%DATADIR%%/red/indsymm.b +%%DATADIR%%/red/indxprin.b +%%DATADIR%%/red/ineq.b +%%DATADIR%%/red/infix.b +%%DATADIR%%/red/inline-defs.dat +%%DATADIR%%/red/innerprd.b +%%DATADIR%%/red/inspect.b +%%DATADIR%%/red/int.b +%%DATADIR%%/red/intbasis.b +%%DATADIR%%/red/integrator.b +%%DATADIR%%/red/inter.b +%%DATADIR%%/red/interfac.b +%%DATADIR%%/red/interpol.b +%%DATADIR%%/red/intf.b +%%DATADIR%%/red/intfac.b +%%DATADIR%%/red/intfierz.b +%%DATADIR%%/red/intrfc.b +%%DATADIR%%/red/intro.b +%%DATADIR%%/red/inttaylr.b +%%DATADIR%%/red/invbase.b +%%DATADIR%%/red/invbcomp.b +%%DATADIR%%/red/invbint.b +%%DATADIR%%/red/invol.b +%%DATADIR%%/red/io.b +%%DATADIR%%/red/ioto.b +%%DATADIR%%/red/ir2om.b +%%DATADIR%%/red/isolve.b +%%DATADIR%%/red/jhddiff.b +%%DATADIR%%/red/jhdriver.b +%%DATADIR%%/red/jordan.b +%%DATADIR%%/red/jordsymb.b +%%DATADIR%%/red/jpatches.b +%%DATADIR%%/red/jsymbols.b +%%DATADIR%%/red/kernel.b +%%DATADIR%%/red/kredelw.b +%%DATADIR%%/red/kronf.b +%%DATADIR%%/red/kuechl.b +%%DATADIR%%/red/lalr.b +%%DATADIR%%/red/lamatrix.b +%%DATADIR%%/red/laplace.b +%%DATADIR%%/red/lf.b +%%DATADIR%%/red/libreduce.b +%%DATADIR%%/red/lie.b +%%DATADIR%%/red/lie1234.b +%%DATADIR%%/red/liedf.b +%%DATADIR%%/red/liendmc1.b +%%DATADIR%%/red/liepde.b +%%DATADIR%%/red/lievalfm.b +%%DATADIR%%/red/limits.b +%%DATADIR%%/red/linalg.b +%%DATADIR%%/red/linband.b +%%DATADIR%%/red/linineq.b +%%DATADIR%%/red/linmodp.b +%%DATADIR%%/red/linop.b +%%DATADIR%%/red/linrec.b +%%DATADIR%%/red/linrel.b +%%DATADIR%%/red/liqsimp1.b +%%DATADIR%%/red/liqsimp2.b +%%DATADIR%%/red/list.b +%%DATADIR%%/red/listvecops.b +%%DATADIR%%/red/log2atan.b +%%DATADIR%%/red/logsort.b +%%DATADIR%%/red/loops.b +%%DATADIR%%/red/loops88.b +%%DATADIR%%/red/lpdo.b +%%DATADIR%%/red/lpri.b +%%DATADIR%%/red/lspc.b +%%DATADIR%%/red/lspfor.b +%%DATADIR%%/red/lsppasc.b +%%DATADIR%%/red/lsprat.b +%%DATADIR%%/red/lto.b +%%DATADIR%%/red/ludecom.b +%%DATADIR%%/red/makefour.b +%%DATADIR%%/red/makevars.b +%%DATADIR%%/red/maninp.b +%%DATADIR%%/red/map.b +%%DATADIR%%/red/map2strn.b +%%DATADIR%%/red/matarg.b +%%DATADIR%%/red/math.b +%%DATADIR%%/red/mathml.b +%%DATADIR%%/red/mathmlom.b +%%DATADIR%%/red/mathpr.b +%%DATADIR%%/red/matop.b +%%DATADIR%%/red/matpri.b +%%DATADIR%%/red/matproc.b +%%DATADIR%%/red/matrext.b +%%DATADIR%%/red/matrix.b +%%DATADIR%%/red/matrix4.b +%%DATADIR%%/red/matsm.b +%%DATADIR%%/red/maxmin.b +%%DATADIR%%/red/meijerg.b +%%DATADIR%%/red/mhensfns.b +%%DATADIR%%/red/minlngth.b +%%DATADIR%%/red/misc.b +%%DATADIR%%/red/mksp.b +%%DATADIR%%/red/mma.awk +%%DATADIR%%/red/mma.b +%%DATADIR%%/red/mml_ir.b +%%DATADIR%%/red/mo.b +%%DATADIR%%/red/modify.b +%%DATADIR%%/red/modlineq.b +%%DATADIR%%/red/modpoly.b +%%DATADIR%%/red/modroots.b +%%DATADIR%%/red/modsolve.b +%%DATADIR%%/red/modsqrt.b +%%DATADIR%%/red/modsr.b +%%DATADIR%%/red/modular.b +%%DATADIR%%/red/module.b +%%DATADIR%%/red/moid.b +%%DATADIR%%/red/mprint.b +%%DATADIR%%/red/mri.b +%%DATADIR%%/red/mri_ofsf.b +%%DATADIR%%/red/mri_pasf.b +%%DATADIR%%/red/mriqe.b +%%DATADIR%%/red/mrvlimit.b +%%DATADIR%%/red/mstruct.b +%%DATADIR%%/red/mtables.b +%%DATADIR%%/red/multihen.b +%%DATADIR%%/red/multroot.b +%%DATADIR%%/red/mv.b +%%DATADIR%%/red/mvmatch.b +%%DATADIR%%/red/nagell.b +%%DATADIR%%/red/nbasis.b +%%DATADIR%%/red/ncdip.b +%%DATADIR%%/red/ncenv.b +%%DATADIR%%/red/ncfactor.b +%%DATADIR%%/red/ncgroeb.b +%%DATADIR%%/red/ncout.b +%%DATADIR%%/red/ncpoly.b +%%DATADIR%%/red/nestdom.b +%%DATADIR%%/red/nestrad.b +%%DATADIR%%/red/newtok.b +%%DATADIR%%/red/newton.b +%%DATADIR%%/red/noncom2.b +%%DATADIR%%/red/normform.b +%%DATADIR%%/red/nrstroot.b +%%DATADIR%%/red/nssimp.b +%%DATADIR%%/red/nullsp.b +%%DATADIR%%/red/numeric.b +%%DATADIR%%/red/numeval.b +%%DATADIR%%/red/numfit.b +%%DATADIR%%/red/numint.b +%%DATADIR%%/red/numsolve.b +%%DATADIR%%/red/numsup.b +%%DATADIR%%/red/odeintfc.b +%%DATADIR%%/red/odelin.b +%%DATADIR%%/red/odenon1.b +%%DATADIR%%/red/odenonn.b +%%DATADIR%%/red/odepatch.b +%%DATADIR%%/red/odesolve.b +%%DATADIR%%/red/odespcfn.b +%%DATADIR%%/red/odetop.b +%%DATADIR%%/red/odim.b +%%DATADIR%%/red/ofsf.b +%%DATADIR%%/red/ofsfanuex.b +%%DATADIR%%/red/ofsfbnf.b +%%DATADIR%%/red/ofsfcad.b +%%DATADIR%%/red/ofsfcadproj.b +%%DATADIR%%/red/ofsfdecdeg.b +%%DATADIR%%/red/ofsfdet.b +%%DATADIR%%/red/ofsfdpep.b +%%DATADIR%%/red/ofsfexfr.b +%%DATADIR%%/red/ofsfgs.b +%%DATADIR%%/red/ofsfhqe.b +%%DATADIR%%/red/ofsfic.b +%%DATADIR%%/red/ofsflp.b +%%DATADIR%%/red/ofsfmisc.b +%%DATADIR%%/red/ofsfopt.b +%%DATADIR%%/red/ofsfqe.b +%%DATADIR%%/red/ofsfsiat.b +%%DATADIR%%/red/ofsfsism.b +%%DATADIR%%/red/ofsfsmtqe.b +%%DATADIR%%/red/ofsftfc.b +%%DATADIR%%/red/ofsftrop.b +%%DATADIR%%/red/ofsfvsans.b +%%DATADIR%%/red/ofsfvsblock.b +%%DATADIR%%/red/ofsfvseset.b +%%DATADIR%%/red/ofsfvsl.b +%%DATADIR%%/red/ofsfvslists.b +%%DATADIR%%/red/ofsfvssub.b +%%DATADIR%%/red/ofsfxopt.b +%%DATADIR%%/red/om2ir.b +%%DATADIR%%/red/opertens.b +%%DATADIR%%/red/opmtch.b +%%DATADIR%%/red/order.b +%%DATADIR%%/red/orthovec.b +%%DATADIR%%/red/package4.b +%%DATADIR%%/red/pade.b +%%DATADIR%%/red/paraset.b +%%DATADIR%%/red/parray.b +%%DATADIR%%/red/parser.b +%%DATADIR%%/red/part.b +%%DATADIR%%/red/partdf.b +%%DATADIR%%/red/partitns.b +%%DATADIR%%/red/partitsf.b +%%DATADIR%%/red/pasf.b +%%DATADIR%%/red/pasfbnf.b +%%DATADIR%%/red/pasfmisc.b +%%DATADIR%%/red/pasfnf.b +%%DATADIR%%/red/pasfqe.b +%%DATADIR%%/red/pasfresolve.b +%%DATADIR%%/red/pasfsiat.b +%%DATADIR%%/red/pasfsism.b +%%DATADIR%%/red/pattdefn.b +%%DATADIR%%/red/pattperm.b +%%DATADIR%%/red/perm1.b +%%DATADIR%%/red/perms.b +%%DATADIR%%/red/pf.b +%%DATADIR%%/red/pfacmult.b +%%DATADIR%%/red/pfactor.b +%%DATADIR%%/red/pgauss.b +%%DATADIR%%/red/pgcond.b +%%DATADIR%%/red/pgsm.b +%%DATADIR%%/red/physop.b +%%DATADIR%%/red/pident.b +%%DATADIR%%/red/places.b +%%DATADIR%%/red/plot.b +%%DATADIR%%/red/plotexp2.b +%%DATADIR%%/red/plotexp3.b +%%DATADIR%%/red/plotimp2.b +%%DATADIR%%/red/plotimp3.b +%%DATADIR%%/red/plotnum.b +%%DATADIR%%/red/plotsynt.b +%%DATADIR%%/red/pltpara.b +%%DATADIR%%/red/pm.b +%%DATADIR%%/red/pmintrfc.b +%%DATADIR%%/red/pmpatch.b +%%DATADIR%%/red/pmrules.b +%%DATADIR%%/red/polineq.b +%%DATADIR%%/red/polrep.b +%%DATADIR%%/red/poly.b +%%DATADIR%%/red/polydiv.b +%%DATADIR%%/red/polyexns.b +%%DATADIR%%/red/polyop.b +%%DATADIR%%/red/ppsoln.b +%%DATADIR%%/red/pre.b +%%DATADIR%%/red/precoats.b +%%DATADIR%%/red/prep.b +%%DATADIR%%/red/pretty.b +%%DATADIR%%/red/prime.b +%%DATADIR%%/red/primfac.b +%%DATADIR%%/red/primitive.b +%%DATADIR%%/red/proc.b +%%DATADIR%%/red/proc4.b +%%DATADIR%%/red/prod.b +%%DATADIR%%/red/profile.b *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802232023.w1NKNQZb048739>