├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TAGS ├── aclocal.m4 ├── autom4te.cache ├── output.0 ├── output.1 ├── output.2 ├── output.3 ├── requests ├── traces.0 ├── traces.1 ├── traces.2 └── traces.3 ├── autoscan.log ├── config.log ├── config.status ├── configure ├── configure.ac ├── depcomp ├── doc ├── Makefile ├── Makefile.am ├── Makefile.in └── eqntott.1 ├── examples ├── ex0.eqn ├── ex1.eqn ├── ex2.eqn ├── ex5.eqn ├── ex6.eqn ├── ex7.eqn ├── ex8.eqn └── ex9.eqn ├── install-sh ├── missing ├── mklog ├── old ├── Makefile └── README ├── src ├── Makefile ├── Makefile.am ├── Makefile.in ├── TAGS ├── bnode.c ├── canon.c ├── config.h ├── config.h.in ├── cover.c ├── duple.c ├── gram.y ├── hash.c ├── hdr.h ├── merge.c ├── misc.c ├── nt.c ├── preprocess.c ├── prexpr.c ├── procargs.c ├── pterm.c ├── pterm_ops.c ├── putpla.c ├── read_ones.c ├── reduce.c ├── rmcvd.c ├── stamp-h1 ├── substitute.c ├── version.c ├── x.c ├── x.h ├── y.tab.c ├── y.tab.h └── yystuff.c └── ylwrap /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src doc -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/README -------------------------------------------------------------------------------- /TAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/TAGS -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/output.0 -------------------------------------------------------------------------------- /autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/output.1 -------------------------------------------------------------------------------- /autom4te.cache/output.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/output.2 -------------------------------------------------------------------------------- /autom4te.cache/output.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/output.3 -------------------------------------------------------------------------------- /autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/requests -------------------------------------------------------------------------------- /autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /autom4te.cache/traces.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/traces.2 -------------------------------------------------------------------------------- /autom4te.cache/traces.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autom4te.cache/traces.3 -------------------------------------------------------------------------------- /autoscan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/autoscan.log -------------------------------------------------------------------------------- /config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/config.log -------------------------------------------------------------------------------- /config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/config.status -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/depcomp -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/doc/Makefile.in -------------------------------------------------------------------------------- /doc/eqntott.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/doc/eqntott.1 -------------------------------------------------------------------------------- /examples/ex0.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex0.eqn -------------------------------------------------------------------------------- /examples/ex1.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex1.eqn -------------------------------------------------------------------------------- /examples/ex2.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex2.eqn -------------------------------------------------------------------------------- /examples/ex5.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex5.eqn -------------------------------------------------------------------------------- /examples/ex6.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex6.eqn -------------------------------------------------------------------------------- /examples/ex7.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex7.eqn -------------------------------------------------------------------------------- /examples/ex8.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex8.eqn -------------------------------------------------------------------------------- /examples/ex9.eqn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/examples/ex9.eqn -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/install-sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/missing -------------------------------------------------------------------------------- /mklog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/mklog -------------------------------------------------------------------------------- /old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/old/Makefile -------------------------------------------------------------------------------- /old/README: -------------------------------------------------------------------------------- 1 | This is the original Makefile from 1981. 2 | -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/TAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/TAGS -------------------------------------------------------------------------------- /src/bnode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/bnode.c -------------------------------------------------------------------------------- /src/canon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/canon.c -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/config.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/cover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/cover.c -------------------------------------------------------------------------------- /src/duple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/duple.c -------------------------------------------------------------------------------- /src/gram.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/gram.y -------------------------------------------------------------------------------- /src/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/hash.c -------------------------------------------------------------------------------- /src/hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/hdr.h -------------------------------------------------------------------------------- /src/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/merge.c -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/nt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/nt.c -------------------------------------------------------------------------------- /src/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/preprocess.c -------------------------------------------------------------------------------- /src/prexpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/prexpr.c -------------------------------------------------------------------------------- /src/procargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/procargs.c -------------------------------------------------------------------------------- /src/pterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/pterm.c -------------------------------------------------------------------------------- /src/pterm_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/pterm_ops.c -------------------------------------------------------------------------------- /src/putpla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/putpla.c -------------------------------------------------------------------------------- /src/read_ones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/read_ones.c -------------------------------------------------------------------------------- /src/reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/reduce.c -------------------------------------------------------------------------------- /src/rmcvd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/rmcvd.c -------------------------------------------------------------------------------- /src/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for src/config.h 2 | -------------------------------------------------------------------------------- /src/substitute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/substitute.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/version.c -------------------------------------------------------------------------------- /src/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/x.c -------------------------------------------------------------------------------- /src/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/x.h -------------------------------------------------------------------------------- /src/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/y.tab.c -------------------------------------------------------------------------------- /src/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/y.tab.h -------------------------------------------------------------------------------- /src/yystuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/src/yystuff.c -------------------------------------------------------------------------------- /ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheProjecter/eqntott/HEAD/ylwrap --------------------------------------------------------------------------------