├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .jenkins └── jenkins-build.sh ├── .travis.yml ├── README.md ├── aldor ├── .autotools ├── .cproject ├── .gitignore ├── .project ├── AUTHORS ├── Alog ├── COPYRIGHT ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README.binary-only ├── README.building ├── README.library ├── ToDo ├── aclocal.m4 ├── aldor │ ├── .gitignore │ ├── Authors │ ├── Current │ ├── Makefile.am │ ├── Makefile.in │ ├── Ports │ ├── Timings │ ├── ToDo │ ├── TsCheck │ ├── TsFrozen │ ├── Version │ ├── Win32Port │ ├── contrib │ │ └── gmp │ │ │ └── fm_gmp.c │ ├── lib │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── java │ │ │ ├── .classpath │ │ │ ├── .gitignore │ │ │ ├── .project │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── src │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.in │ │ │ │ └── foamj │ │ │ │ │ ├── AbstractValue.java │ │ │ │ │ ├── AldorObject.java │ │ │ │ │ ├── CastException.java │ │ │ │ │ ├── Clos.java │ │ │ │ │ ├── Env.java │ │ │ │ │ ├── EnvRecord.java │ │ │ │ │ ├── Fn.java │ │ │ │ │ ├── Foam.java │ │ │ │ │ ├── FoamClass.java │ │ │ │ │ ├── FoamContext.java │ │ │ │ │ ├── FoamException.java │ │ │ │ │ ├── FoamHelper.java │ │ │ │ │ ├── FoamJ.java │ │ │ │ │ ├── FoamUserException.java │ │ │ │ │ ├── Format.java │ │ │ │ │ ├── GFn.java │ │ │ │ │ ├── GenIter.java │ │ │ │ │ ├── Gener.java │ │ │ │ │ ├── Globals.java │ │ │ │ │ ├── HaltException.java │ │ │ │ │ ├── JavaException.java │ │ │ │ │ ├── Math.java │ │ │ │ │ ├── MultiRecord.java │ │ │ │ │ ├── Record.java │ │ │ │ │ ├── Value.java │ │ │ │ │ └── Word.java │ │ │ └── test │ │ │ │ ├── Makefile.in │ │ │ │ └── foamj │ │ │ │ └── FoamTest.java │ │ ├── libfoam │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── al │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── aldorcatrep.as │ │ │ │ ├── aldordomainrep.as │ │ │ │ ├── basictuple.as │ │ │ │ ├── box.as │ │ │ │ ├── catdispatchvector.as │ │ │ │ ├── catobj.as │ │ │ │ ├── dd.as │ │ │ │ ├── dispatchvector.as │ │ │ │ ├── domain.as │ │ │ │ ├── domaincat.as │ │ │ │ ├── domainextra.as │ │ │ │ ├── dv.as │ │ │ │ ├── lazyimport.as │ │ │ │ ├── pointerdomain.as │ │ │ │ ├── ptrcache.as │ │ │ │ ├── ptrcatobj.as │ │ │ │ ├── runtime.as │ │ │ │ ├── runtimelib.as │ │ │ │ ├── stringtable.as │ │ │ │ └── value.as │ │ │ ├── axllib.scm │ │ │ ├── foam_l.lsp │ │ │ ├── foam_s.scm │ │ │ └── hashax.boot │ │ └── libfoamlib │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── al │ │ │ ├── .gitignore │ │ │ ├── Makefile.deps │ │ │ ├── Makefile.in │ │ │ ├── array.as │ │ │ ├── basic.as │ │ │ ├── bool.as │ │ │ ├── character.as │ │ │ ├── file.as │ │ │ ├── fname.as │ │ │ ├── foamcat.as │ │ │ ├── foamlib.as │ │ │ ├── format.as │ │ │ ├── gener.as │ │ │ ├── lang.as │ │ │ ├── langx.as │ │ │ ├── list.as │ │ │ ├── lv.as │ │ │ ├── machine.as │ │ │ ├── opsys.as │ │ │ ├── oslow.as │ │ │ ├── parray.as │ │ │ ├── partial.as │ │ │ ├── pointer.as │ │ │ ├── segment.as │ │ │ ├── sfloat.as │ │ │ ├── sinteger.as │ │ │ ├── string.as │ │ │ ├── textwrit.as │ │ │ └── tuple.as │ ├── src │ │ ├── .gitignore │ │ ├── ChangeLog │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── abcheck.c │ │ ├── abcheck.h │ │ ├── ablogic.c │ │ ├── ablogic.h │ │ ├── abnorm.c │ │ ├── abnorm.h │ │ ├── abpretty.c │ │ ├── abpretty.h │ │ ├── absub.c │ │ ├── absub.h │ │ ├── absyn.c │ │ ├── absyn.h │ │ ├── abuse.c │ │ ├── abuse.h │ │ ├── aldor.conf │ │ ├── aldorlib.c │ │ ├── aldorlib.h │ │ ├── annabs.c │ │ ├── annabs.h │ │ ├── any_as.s │ │ ├── archive.c │ │ ├── archive.h │ │ ├── assert.h0 │ │ ├── axl.h │ │ ├── axl.z │ │ ├── axl_y.sed │ │ ├── axlcomp.c │ │ ├── axlcomp.h │ │ ├── axlgen.c │ │ ├── axlgen.h │ │ ├── axlgen0.h │ │ ├── axlobs.c │ │ ├── axlobs.h │ │ ├── axltop.h │ │ ├── basic.typ │ │ ├── bigint.c │ │ ├── bigint.h │ │ ├── bigint_t.c │ │ ├── bitv.c │ │ ├── bitv.h │ │ ├── bitv_t.c │ │ ├── bloop.c │ │ ├── bloop.h │ │ ├── btree.c │ │ ├── btree.h │ │ ├── btree_t.c │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── buffer_t.c │ │ ├── ccode.c │ │ ├── ccode.h │ │ ├── ccode_t.c │ │ ├── ccomp.c │ │ ├── ccomp.h │ │ ├── cconfig.h │ │ ├── cfgfile.c │ │ ├── cfgfile.h │ │ ├── cmdline.c │ │ ├── cmdline.h │ │ ├── compcfg.c │ │ ├── compcfg.h │ │ ├── compopt.c │ │ ├── compopt.h │ │ ├── comsg.c │ │ ├── comsg.h │ │ ├── comsgdb.msg │ │ ├── cport.c │ │ ├── cport.h │ │ ├── cport_t.c │ │ ├── csig.c │ │ ├── csig.h │ │ ├── ctype.h0 │ │ ├── debug.c │ │ ├── debug.h │ │ ├── depdag.c │ │ ├── depdag.h │ │ ├── dflow.c │ │ ├── dflow.h │ │ ├── dnf.c │ │ ├── dnf.h │ │ ├── dnf_t.c │ │ ├── doc.c │ │ ├── doc.h │ │ ├── dword.c │ │ ├── dword.h │ │ ├── editlevels.h │ │ ├── emit.c │ │ ├── emit.h │ │ ├── errno.h0 │ │ ├── errorset.c │ │ ├── errorset.h │ │ ├── fbox.c │ │ ├── fbox.h │ │ ├── features.h0 │ │ ├── fex.c │ │ ├── fex.h │ │ ├── file.c │ │ ├── file.h │ │ ├── file_t.c │ │ ├── fint.c │ │ ├── fint.h │ │ ├── fintphase.c │ │ ├── fintphase.h │ │ ├── flatten.c │ │ ├── flatten.h │ │ ├── float.h0 │ │ ├── float_t.c │ │ ├── flog.c │ │ ├── flog.h │ │ ├── fluid.c │ │ ├── fluid.h │ │ ├── fluid_t.c │ │ ├── fname.c │ │ ├── fname.h │ │ ├── fname_t.c │ │ ├── foam.c │ │ ├── foam.h │ │ ├── foam_c.c │ │ ├── foam_c.h │ │ ├── foam_cfp.c │ │ ├── foam_cfp.h │ │ ├── foam_i.c │ │ ├── foam_i.h │ │ ├── foamopt.c │ │ ├── foamopt.h │ │ ├── foamsig.c │ │ ├── foamsig.h │ │ ├── forg.c │ │ ├── forg.h │ │ ├── format.c │ │ ├── format.h │ │ ├── format_t.c │ │ ├── formatters.c │ │ ├── formatters.h │ │ ├── fortran.c │ │ ├── fortran.h │ │ ├── fptr.c │ │ ├── fptr.h │ │ ├── freevar.c │ │ ├── freevar.h │ │ ├── ftype.c │ │ ├── ftype.h │ │ ├── genc.c │ │ ├── genc.h │ │ ├── gencpp.c │ │ ├── gencpp.h │ │ ├── gencr.c │ │ ├── gencr.h │ │ ├── genfoam.c │ │ ├── genfoam.h │ │ ├── genlisp.c │ │ ├── genlisp.h │ │ ├── genssa.c │ │ ├── genssa.h │ │ ├── genstyle.c │ │ ├── genstyle.h │ │ ├── gentest.c │ │ ├── gf_add.c │ │ ├── gf_add.h │ │ ├── gf_cgener.c │ │ ├── gf_cgener.h │ │ ├── gf_excpt.c │ │ ├── gf_excpt.h │ │ ├── gf_fortran.c │ │ ├── gf_fortran.h │ │ ├── gf_gener.c │ │ ├── gf_gener.h │ │ ├── gf_implicit.c │ │ ├── gf_implicit.h │ │ ├── gf_imps.c │ │ ├── gf_imps.h │ │ ├── gf_java.c │ │ ├── gf_java.h │ │ ├── gf_prog.c │ │ ├── gf_prog.h │ │ ├── gf_reference.c │ │ ├── gf_reference.h │ │ ├── gf_rtime.c │ │ ├── gf_rtime.h │ │ ├── gf_seq.c │ │ ├── gf_seq.h │ │ ├── gf_syme.c │ │ ├── gf_syme.h │ │ ├── gf_util.h │ │ ├── gf_xgener.c │ │ ├── gf_xgener.h │ │ ├── include.c │ │ ├── include.h │ │ ├── inlstate.c │ │ ├── inlstate.h │ │ ├── inlutil.c │ │ ├── inlutil.h │ │ ├── int.c │ │ ├── int.h │ │ ├── intset.c │ │ ├── intset.h │ │ ├── java │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── foam.txt │ │ │ ├── foamj │ │ │ │ └── Closure.java │ │ │ ├── genjava.c │ │ │ ├── genjava.h │ │ │ ├── javacode.c │ │ │ ├── javacode.h │ │ │ ├── javaobj.c │ │ │ ├── javaobj.h │ │ │ └── main.c │ │ ├── javasig.c │ │ ├── javasig.h │ │ ├── lib.c │ │ ├── lib.h │ │ ├── limits.h0 │ │ ├── linear.c │ │ ├── linear.h │ │ ├── link_t.c │ │ ├── list.c │ │ ├── list.h │ │ ├── list_t.c │ │ ├── locale.h0 │ │ ├── loops.c │ │ ├── loops.h │ │ ├── macex.c │ │ ├── macex.h │ │ ├── main.c │ │ ├── main_t.c │ │ ├── math.h0 │ │ ├── memclim.c │ │ ├── memclim.h │ │ ├── msg.c │ │ ├── msg.h │ │ ├── msg_t.c │ │ ├── newjflow.c │ │ ├── of_argsub.c │ │ ├── of_argsub.h │ │ ├── of_cfold.c │ │ ├── of_cfold.h │ │ ├── of_comex.c │ │ ├── of_comex.h │ │ ├── of_cprop.c │ │ ├── of_cprop.h │ │ ├── of_crinlin.c │ │ ├── of_crinlin.h │ │ ├── of_deada.c │ │ ├── of_deada.h │ │ ├── of_deadv.c │ │ ├── of_deadv.h │ │ ├── of_emerg.c │ │ ├── of_emerg.h │ │ ├── of_env.c │ │ ├── of_env.h │ │ ├── of_hfold.c │ │ ├── of_hfold.h │ │ ├── of_inlin.c │ │ ├── of_inlin.h │ │ ├── of_jflow.c │ │ ├── of_jflow.h │ │ ├── of_killp.c │ │ ├── of_killp.h │ │ ├── of_loops.c │ │ ├── of_loops.h │ │ ├── of_peep.c │ │ ├── of_peep.h │ │ ├── of_retyp.c │ │ ├── of_retyp.h │ │ ├── of_retyp2.c │ │ ├── of_rrfmt.c │ │ ├── of_rrfmt.h │ │ ├── of_util.c │ │ ├── of_util.h │ │ ├── opsys.c │ │ ├── opsys.h │ │ ├── opsys_port.h.in │ │ ├── opsys_t.c │ │ ├── optcfg.h │ │ ├── optfoam.c │ │ ├── optfoam.h │ │ ├── optinfo.c │ │ ├── optinfo.h │ │ ├── opttools.c │ │ ├── opttools.h │ │ ├── os_cms.c │ │ ├── os_dos.c │ │ ├── os_macosx_vm.c │ │ ├── os_macs7.c │ │ ├── os_os2.c │ │ ├── os_unix.c │ │ ├── os_vms.c │ │ ├── os_win32.c │ │ ├── ostream.c │ │ ├── ostream.h │ │ ├── output.c │ │ ├── output.h │ │ ├── parseby.c │ │ ├── parseby.h │ │ ├── path.c │ │ ├── path.h │ │ ├── phase.c │ │ ├── phase.h │ │ ├── platform.h │ │ ├── priq.c │ │ ├── priq.h │ │ ├── priq_t.c │ │ ├── rdln.c │ │ ├── rdln.h │ │ ├── sample.terminfo │ │ ├── scan.c │ │ ├── scan.h │ │ ├── scobind.c │ │ ├── scobind.h │ │ ├── sefo.c │ │ ├── sefo.h │ │ ├── setjmp.h0 │ │ ├── sexpr.c │ │ ├── sexpr.h │ │ ├── showexports.c │ │ ├── signal.h0 │ │ ├── simpl.c │ │ ├── simpl.h │ │ ├── spesym.c │ │ ├── spesym.h │ │ ├── srcline.c │ │ ├── srcline.h │ │ ├── srcpos.c │ │ ├── srcpos.h │ │ ├── stab.c │ │ ├── stab.h │ │ ├── stdarg.h0 │ │ ├── stdc.c │ │ ├── stdc.h │ │ ├── stddef.h0 │ │ ├── stdio.h0 │ │ ├── stdlib.h0 │ │ ├── store.c │ │ ├── store.h │ │ ├── store1_t.c │ │ ├── store2_t.c │ │ ├── store3_t.c │ │ ├── string.h0 │ │ ├── strops.c │ │ ├── strops.h │ │ ├── strops_t.c │ │ ├── structtest.c │ │ ├── susage.c │ │ ├── susage.h │ │ ├── symbol.c │ │ ├── symbol.h │ │ ├── symbol_t.c │ │ ├── symcoinfo.c │ │ ├── symcoinfo.h │ │ ├── syme.c │ │ ├── syme.h │ │ ├── syme0.h │ │ ├── symeset.c │ │ ├── symeset.h │ │ ├── syscmd.c │ │ ├── syscmd.h │ │ ├── table.c │ │ ├── table.h │ │ ├── table_t.c │ │ ├── tconst.c │ │ ├── tconst.h │ │ ├── termtype.c │ │ ├── termtype.h │ │ ├── terror.c │ │ ├── terror.h │ │ ├── test.c │ │ ├── test.h │ │ ├── test │ │ │ ├── abquick.c │ │ │ ├── abquick.h │ │ │ ├── test_abcheck.c │ │ │ ├── test_ablogic.c │ │ │ ├── test_abnorm.c │ │ │ ├── test_absyn.c │ │ │ ├── test_annabs.c │ │ │ ├── test_archive.c │ │ │ ├── test_bigint.c │ │ │ ├── test_bitv.c │ │ │ ├── test_errorset.c │ │ │ ├── test_float.c │ │ │ ├── test_flog.c │ │ │ ├── test_fname.c │ │ │ ├── test_foam.c │ │ │ ├── test_forg.c │ │ │ ├── test_format.c │ │ │ ├── test_fptr.c │ │ │ ├── test_gencr.c │ │ │ ├── test_genfoam.c │ │ │ ├── test_int.c │ │ │ ├── test_java.c │ │ │ ├── test_jcode.c │ │ │ ├── test_jflow.c │ │ │ ├── test_list.c │ │ │ ├── test_of_cprop.c │ │ │ ├── test_of_crinlin.c │ │ │ ├── test_of_peep.c │ │ │ ├── test_ostream.c │ │ │ ├── test_printf.c │ │ │ ├── test_retyp.c │ │ │ ├── test_scobind.c │ │ │ ├── test_srcpos.c │ │ │ ├── test_stab.c │ │ │ ├── test_strops.c │ │ │ ├── test_syme.c │ │ │ ├── test_symeset.c │ │ │ ├── test_tform.c │ │ │ ├── test_tfsat.c │ │ │ ├── test_tibup.c │ │ │ ├── test_tinfer.c │ │ │ ├── test_tisef.c │ │ │ ├── test_tposs.c │ │ │ ├── test_tset.c │ │ │ ├── testall.c │ │ │ ├── testall.h │ │ │ ├── testlib.c │ │ │ └── testlib.h │ │ ├── textansi.c │ │ ├── textansi.h │ │ ├── textcolour.c │ │ ├── textcolour.h │ │ ├── texthp.c │ │ ├── texthp.h │ │ ├── tfcond.c │ │ ├── tfcond.h │ │ ├── tform.c │ │ ├── tform.h │ │ ├── tfsat.c │ │ ├── tfsat.h │ │ ├── ti_bup.c │ │ ├── ti_bup.h │ │ ├── ti_decl.c │ │ ├── ti_decl.h │ │ ├── ti_sef.c │ │ ├── ti_sef.h │ │ ├── ti_tdn.c │ │ ├── ti_tdn.h │ │ ├── ti_top.c │ │ ├── ti_top.h │ │ ├── time.h0 │ │ ├── timer.c │ │ ├── timer.h │ │ ├── tinfer.c │ │ ├── tinfer.h │ │ ├── token.c │ │ ├── token.h │ │ ├── tposs.c │ │ ├── tposs.h │ │ ├── tqual.c │ │ ├── tqual.h │ │ ├── ttable.c │ │ ├── ttable.h │ │ ├── unistd.h0 │ │ ├── usedef.c │ │ ├── usedef.h │ │ ├── util.c │ │ ├── util.h │ │ ├── util_t.c │ │ ├── version.c.in │ │ ├── version.h │ │ ├── winmain.c │ │ ├── xfloat.c │ │ ├── xfloat.h │ │ ├── xfloat_t.c │ │ ├── yldlocs.c │ │ └── yldlocs.h │ ├── subcmd │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lno │ │ │ ├── renum.c │ │ │ └── unnum.c │ │ ├── testaldor │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── stat.h0 │ │ │ ├── testaldor.c │ │ │ ├── testaldor.h │ │ │ ├── tx_opsys.c │ │ │ ├── tx_unix.c │ │ │ └── tx_win32.c │ │ └── unitools │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── platform.c │ │ │ └── unicl.c │ ├── test │ │ ├── .gitignore │ │ ├── JExportTest.java │ │ ├── JThrowTest.java │ │ ├── L1.as │ │ ├── Makefile.in │ │ ├── aldor │ │ │ └── test │ │ │ │ └── ExceptionExample.java │ │ ├── apply.as │ │ ├── args1.as │ │ ├── args1a.as │ │ ├── args2.as │ │ ├── args2a.as │ │ ├── assertlib.as │ │ ├── catdef2.as │ │ ├── cexp.as │ │ ├── cimp1.as │ │ ├── clos.as │ │ ├── cross.as │ │ ├── enumtest.as │ │ ├── envname.as │ │ ├── exquo.as │ │ ├── fcall.as │ │ ├── gdom.as │ │ ├── gencross.as │ │ ├── gencross0.as │ │ ├── gencross1.as │ │ ├── gencross_empty.as │ │ ├── gener0.as │ │ ├── gener_fns.as │ │ ├── generlist.as │ │ ├── genlist0a.as │ │ ├── genlist1a.as │ │ ├── genrec.as │ │ ├── gtools.as │ │ ├── halt.as │ │ ├── jcatch.as │ │ ├── jexn.as │ │ ├── jexport.as │ │ ├── jexport1.as │ │ ├── jexport2.as │ │ ├── jimp0.as │ │ ├── jimp1.as │ │ ├── jimport.as │ │ ├── jimport_opt.as │ │ ├── jlist.as │ │ ├── jthrow.as │ │ ├── lit.as │ │ ├── lself.as │ │ ├── lself0.as │ │ ├── lself2.as │ │ ├── maptuple.as │ │ ├── multinever.as │ │ ├── nestcond.as │ │ ├── opt1.as │ │ ├── prelude.lsp │ │ ├── rec2.as │ │ ├── rectest.as │ │ ├── rtexns.as │ │ ├── run_j.as │ │ ├── selfcond.as │ │ ├── seq.as │ │ ├── silly.as │ │ ├── simple.as │ │ ├── simple_j.as │ │ ├── small.as │ │ ├── strtable1.as │ │ ├── tassert.as │ │ ├── testlist.as │ │ ├── where1.as │ │ ├── x.as │ │ ├── xarr.as │ │ ├── xdom.as │ │ ├── xfold.as │ │ ├── xgenerpkg.as │ │ ├── xgenerpkg0.as │ │ ├── xgenerpkg1.as │ │ ├── xit.as │ │ ├── xiter.as │ │ ├── xits.as │ │ └── xmap.as │ └── tools │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── monitor │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── eval │ │ │ ├── .gitignore │ │ │ └── rt64 │ │ │ │ ├── .gitignore │ │ │ │ └── tryaldor.as │ │ ├── perms.rt │ │ └── src │ │ │ ├── .gitignore │ │ │ ├── Evaluator.pm │ │ │ ├── Evaluator.xs │ │ │ ├── evaluator │ │ │ ├── getsyscalls │ │ │ ├── showlog │ │ │ ├── syscalls.h │ │ │ ├── typemap │ │ │ └── utf.h │ │ └── unix │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── aldoc2html.c │ │ ├── aldor.in │ │ ├── aldorbug │ │ ├── atinlay.c │ │ ├── axiomxl │ │ ├── badzeros.c │ │ ├── buildarg │ │ ├── ccode.h │ │ ├── cenum.c │ │ ├── cenum.h │ │ ├── cids │ │ ├── collide.c │ │ ├── cparse.h │ │ ├── cparse.y │ │ ├── cprt.awk │ │ ├── cscan.c │ │ ├── cscan.h │ │ ├── cwords.c │ │ ├── dirname.c │ │ ├── diskchek.c │ │ ├── doaldor │ │ ├── doas │ │ ├── doaxiomxl │ │ ├── docc │ │ ├── dog++ │ │ ├── dolatex │ │ ├── domkmk │ │ ├── dopdflatex │ │ ├── doranlib │ │ ├── dosfile.c │ │ ├── dosify │ │ ├── echon.c │ │ ├── exclude.c │ │ ├── extract.c │ │ ├── fixbug │ │ ├── fixreply │ │ ├── flags.c │ │ ├── flags.h │ │ ├── gdb-aldor.in │ │ ├── getbug │ │ ├── includes.c │ │ ├── krcc │ │ ├── macify │ │ ├── magic │ │ ├── makemake.c │ │ ├── maxiomxl.c │ │ ├── maxiomxl.sh │ │ ├── memclean.c │ │ ├── memlay.c │ │ ├── mkasys │ │ ├── mklib.sh │ │ ├── mksrctex │ │ ├── msgcat.c │ │ ├── oldc.c │ │ ├── older24h.c │ │ ├── pr │ │ ├── realuser.c │ │ ├── shorten.c │ │ ├── skimenum.c │ │ ├── strarray.c │ │ ├── suru.c │ │ ├── txt2txt.c │ │ ├── undent │ │ ├── uniq │ │ ├── unixify │ │ ├── zacc.c │ │ ├── zacc.h │ │ ├── zaccgram.y │ │ ├── zaccscan.l │ │ └── zcport.h ├── aldorug │ ├── .gitignore │ ├── Makefile │ ├── Src │ │ └── comsgdb.msg │ ├── TexMacs │ │ ├── acmconf.sty │ │ ├── axiom.sty │ │ ├── axiomps.sty │ │ ├── axiomxl.sty │ │ ├── scrunch.sty │ │ ├── treedef.tex │ │ └── verbatim.sty │ ├── TsCheck │ ├── ack.tex │ ├── acmconf.sty │ ├── aldorug.tex │ ├── aldorughtex.awk │ ├── aldorugmacs.tex │ ├── axiom.cls │ ├── axiom.sty │ ├── axiomps.sty │ ├── axiomxl.sty │ ├── c.tex │ ├── commands │ │ ├── aldorbug.rec │ │ ├── arigato.in │ │ ├── arigato.out │ │ ├── arigato.sh │ │ ├── bloop.rec │ │ ├── cside.in │ │ ├── cside.out │ │ ├── cside.sh │ │ ├── error0.in │ │ ├── error0.sh │ │ ├── separate.in │ │ ├── separate.sh │ │ ├── sieve.in │ │ ├── sieve.out │ │ ├── sieve.sh │ │ └── verbose.rec │ ├── comsgdb.awk │ ├── develop.tex │ ├── errors.tex │ ├── examples │ │ ├── arigato.as │ │ ├── aside.as │ │ ├── ax1.rec │ │ ├── ax2.rec │ │ ├── choose.as │ │ ├── compact.as │ │ ├── comtest.as │ │ ├── cside.c │ │ ├── error0.as │ │ ├── error1.as │ │ ├── error2.as │ │ ├── error3.as │ │ ├── forn1.as │ │ ├── matops.as │ │ ├── moderr1 │ │ ├── moderr2 │ │ ├── nputs.c │ │ ├── poker.as │ │ ├── sieve.as │ │ ├── simple1.as │ │ ├── simple2.as │ │ ├── simple3.as │ │ ├── simple4a.as │ │ ├── simple4b.as │ │ └── testroun.as │ ├── foreign.tex │ ├── formal.tex │ ├── fornlisp.tex │ ├── fortran.tex │ ├── grammar.tex │ ├── install.tex │ ├── interact.tex │ ├── intro.tex │ ├── langenvs.tex │ ├── langexpr.tex │ ├── langextd.tex │ ├── langfuns.tex │ ├── langgenr.tex │ ├── langlibs.tex │ ├── langloop.tex │ ├── langmach.tex │ ├── langmacs.tex │ ├── langsumm.tex │ ├── langsyn.tex │ ├── langtdef.tex │ ├── langties.tex │ ├── langtry.tex │ ├── langtype.tex │ ├── messages.tex │ ├── msghelp.tex │ ├── notices.tex │ ├── options.tex │ ├── pictures │ │ ├── axlcat.ps │ │ └── axlcat.ps0 │ ├── ports.tbl │ ├── precedence.tbl │ ├── preface.tex │ ├── progsimp.tex │ ├── samples.tex │ ├── samples │ │ ├── cycle.as │ │ ├── cycle.out │ │ ├── cycle.tnb │ │ ├── extend.as │ │ ├── extend.out │ │ ├── extend.tnb │ │ ├── f77sort.as │ │ ├── f77sort.tnb │ │ ├── gens.as │ │ ├── gens.out │ │ ├── gens.tnb │ │ ├── greet.as │ │ ├── greet.out │ │ ├── greet.tnb │ │ ├── hello.as │ │ ├── hello.out │ │ ├── hello.tnb │ │ ├── imod.as │ │ ├── imod.out │ │ ├── imod.tnb │ │ ├── mandel.as │ │ ├── mandel.out │ │ ├── mandel.tnb │ │ ├── myfact.as │ │ ├── myfact.out │ │ ├── myfact.tnb │ │ ├── number.as │ │ ├── objectb.as │ │ ├── objectb.out │ │ ├── objectb.tnb │ │ ├── objectr.as │ │ ├── objectr.out │ │ ├── objectr.tnb │ │ ├── quanc8.as │ │ ├── quanc8.out │ │ ├── quanc8.tnb │ │ ├── stack.as │ │ ├── stack.out │ │ ├── stack.tnb │ │ ├── swap.as │ │ ├── swap.out │ │ ├── swap.tnb │ │ ├── symbol.as │ │ ├── symbol.out │ │ ├── symbol.tnb │ │ ├── textin.as │ │ ├── textin.out │ │ ├── textin.tnb │ │ ├── tree.as │ │ ├── tree.out │ │ └── tree.tnb │ ├── scrunch.sty │ ├── separate.tex │ ├── title.tex │ ├── treedef.tex │ ├── unicl.tex │ ├── verbatim.sty │ ├── version.tex │ └── xc.tex ├── amaux │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── missing │ ├── test-driver │ └── ylwrap ├── autogen.sh ├── configure ├── configure.ac ├── doc │ ├── build.md │ ├── compiler.md │ ├── hier.md │ ├── index.md │ └── tex │ │ └── Makefile.in ├── lib │ ├── .gitignore │ ├── Makefile.am │ ├── Makefile.in │ ├── aldor │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── tex │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.aldoc │ │ │ │ ├── aldoc.cls │ │ │ │ ├── aldoc.dtx │ │ │ │ ├── aldoc.ins │ │ │ │ ├── alltypes.tex │ │ │ │ ├── guide.tex │ │ │ │ ├── hyperref.cfg │ │ │ │ ├── intro.tex │ │ │ │ ├── libaldor.tex │ │ │ │ ├── macros.tex │ │ │ │ ├── manual.tex │ │ │ │ ├── refer.tex │ │ │ │ ├── sallicat.fig │ │ │ │ ├── sallidata.fig │ │ │ │ ├── test.tex │ │ │ │ ├── title.tex │ │ │ │ └── ttyverb.sty │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── aldor.as │ │ │ ├── aldorinterp.as │ │ │ ├── aldorio.as │ │ │ └── aldortest.as │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aldor_gloop.as │ │ │ ├── aldor_gloopd.as │ │ │ ├── arith │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sal_arith.as │ │ │ │ ├── sal_binpow.as │ │ │ │ ├── sal_bool.as │ │ │ │ ├── sal_bsearch.as │ │ │ │ ├── sal_complex.as │ │ │ │ ├── sal_dfloat.as │ │ │ │ ├── sal_fltcat.as │ │ │ │ ├── sal_ftools.as │ │ │ │ ├── sal_int.as │ │ │ │ ├── sal_intcat.as │ │ │ │ ├── sal_itools.as │ │ │ │ ├── sal_lincomb.as │ │ │ │ ├── sal_mint.as │ │ │ │ ├── sal_oarith.as │ │ │ │ ├── sal_pointer.as │ │ │ │ ├── sal_random.as │ │ │ │ ├── sal_segment.as │ │ │ │ └── sal_sfloat.as │ │ │ ├── base │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── ald_pfunc.as │ │ │ │ ├── sal_base.as │ │ │ │ ├── sal_base0.as │ │ │ │ ├── sal_bstream.as │ │ │ │ ├── sal_byte.as │ │ │ │ ├── sal_char.as │ │ │ │ ├── sal_copy.as │ │ │ │ ├── sal_gener.as │ │ │ │ ├── sal_htype.as │ │ │ │ ├── sal_iterable.as │ │ │ │ ├── sal_itype.as │ │ │ │ ├── sal_manip.as │ │ │ │ ├── sal_order.as │ │ │ │ ├── sal_otype.as │ │ │ │ ├── sal_partial.as │ │ │ │ ├── sal_serial.as │ │ │ │ ├── sal_syntax.as │ │ │ │ ├── sal_torder.as │ │ │ │ └── sal_tstream.as │ │ │ ├── common.mk │ │ │ ├── datastruc │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── ald_flags.as │ │ │ │ ├── ald_queue.as │ │ │ │ ├── ald_symbol.as │ │ │ │ ├── ald_symtab.as │ │ │ │ ├── sal_array.as │ │ │ │ ├── sal_barray.as │ │ │ │ ├── sal_bdata.as │ │ │ │ ├── sal_bstruc.as │ │ │ │ ├── sal_ckarray.as │ │ │ │ ├── sal_cklist.as │ │ │ │ ├── sal_ckmembk.as │ │ │ │ ├── sal_data.as │ │ │ │ ├── sal_ddata.as │ │ │ │ ├── sal_fold.as │ │ │ │ ├── sal_fstruc.as │ │ │ │ ├── sal_hash.as │ │ │ │ ├── sal_hashset.as │ │ │ │ ├── sal_kntry.as │ │ │ │ ├── sal_langx.as │ │ │ │ ├── sal_list.as │ │ │ │ ├── sal_lstruc.as │ │ │ │ ├── sal_map.as │ │ │ │ ├── sal_memblk.as │ │ │ │ ├── sal_parray.as │ │ │ │ ├── sal_pkarray.as │ │ │ │ ├── sal_set.as │ │ │ │ ├── sal_slist.as │ │ │ │ ├── sal_sortas.as │ │ │ │ ├── sal_sset.as │ │ │ │ ├── sal_stream.as │ │ │ │ ├── sal_string.as │ │ │ │ ├── sal_table.as │ │ │ │ └── sal_union.as │ │ │ ├── gmp │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sal_fltgmp.as │ │ │ │ ├── sal_gmptls.as │ │ │ │ └── sal_intgmp.as │ │ │ ├── lang │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ └── sal_lang.as │ │ │ ├── lisp │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ └── sal_sexpr.as │ │ │ ├── test │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ └── tst_assert.as │ │ │ └── util │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── ald_trace.as │ │ │ │ ├── eio_rsto.as │ │ │ │ ├── rtexns.as │ │ │ │ ├── sal_agat.as │ │ │ │ ├── sal_cmdline.as │ │ │ │ ├── sal_dir.as │ │ │ │ ├── sal_file.as │ │ │ │ ├── sal_fname.as │ │ │ │ ├── sal_timer.as │ │ │ │ ├── sal_util.c │ │ │ │ └── sal_version.as │ │ ├── test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── RepRecordError │ │ │ │ ├── .gitignore │ │ │ │ ├── RepRecordError.as │ │ │ │ ├── RepRecordError.ref │ │ │ │ └── form.xml │ │ │ ├── Tests.am │ │ │ ├── avl-set │ │ │ │ ├── .gitignore │ │ │ │ ├── avl-set.as │ │ │ │ ├── avl-set.ref │ │ │ │ ├── form.xml │ │ │ │ └── ord-set-type.as │ │ │ ├── avl-set2 │ │ │ │ ├── .gitignore │ │ │ │ ├── avl-set2.as │ │ │ │ ├── avl-set2.ref │ │ │ │ ├── form.xml │ │ │ │ └── ord-set-type.as │ │ │ ├── bug1332 │ │ │ │ ├── .gitignore │ │ │ │ ├── bug1332.as │ │ │ │ └── bug1332.ref │ │ │ ├── bug1333 │ │ │ │ ├── .gitignore │ │ │ │ ├── bug1333.as │ │ │ │ └── bug1333.ref │ │ │ ├── bug1334 │ │ │ │ ├── .gitignore │ │ │ │ ├── bug1334.as │ │ │ │ └── bug1334.ref │ │ │ ├── bug1337 │ │ │ │ ├── .gitignore │ │ │ │ ├── bug1337.as │ │ │ │ └── bug1337.ref │ │ │ ├── bug1340 │ │ │ │ ├── .gitignore │ │ │ │ ├── bug1340.as │ │ │ │ └── bug1340.ref │ │ │ ├── bugCklst │ │ │ │ ├── .gitignore │ │ │ │ ├── bugCklst.as │ │ │ │ ├── bugCklst.ref │ │ │ │ └── form.xml │ │ │ ├── bugExtend1 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugExtend1.as │ │ │ │ ├── bugExtend1.ref │ │ │ │ └── form.xml │ │ │ ├── bugFree │ │ │ │ ├── .gitignore │ │ │ │ ├── bugFree.as │ │ │ │ ├── bugFree.ref │ │ │ │ └── form.xml │ │ │ ├── bugReturn │ │ │ │ ├── .gitignore │ │ │ │ ├── bugReturn.as │ │ │ │ ├── bugReturn.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1.as │ │ │ │ └── bugreport_1.ref │ │ │ ├── bugreport_13 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_13.as │ │ │ │ ├── bugreport_13.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1347 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1347.as │ │ │ │ ├── bugreport_1347.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1351 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1351.as │ │ │ │ ├── bugreport_1351.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1356 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1356.as │ │ │ │ ├── bugreport_1356.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1362 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1362.as │ │ │ │ ├── bugreport_1362.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1363 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1363.as │ │ │ │ ├── bugreport_1363.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_14 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_14.as │ │ │ │ ├── bugreport_14.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_15 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_15.as │ │ │ │ ├── bugreport_15.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_1a │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_1a.as │ │ │ │ └── bugreport_1a.ref │ │ │ ├── bugreport_21 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_21.as │ │ │ │ ├── bugreport_21.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_25 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_25.as │ │ │ │ ├── bugreport_25.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_5 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_5.as │ │ │ │ ├── bugreport_5.ref │ │ │ │ └── form.xml │ │ │ ├── bugreport_7 │ │ │ │ ├── .gitignore │ │ │ │ ├── bugreport_7.as │ │ │ │ ├── bugreport_7.ref │ │ │ │ └── form.xml │ │ │ ├── cond-defaults │ │ │ │ └── cond-defaults.as │ │ │ ├── cond │ │ │ │ ├── cond.as │ │ │ │ ├── cond.ref │ │ │ │ └── cond1.as │ │ │ ├── cond2 │ │ │ │ └── cond2.as │ │ │ ├── expt │ │ │ │ ├── .gitignore │ │ │ │ ├── expt.as │ │ │ │ ├── expt.ref │ │ │ │ └── form.xml │ │ │ ├── hang │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── hang.as │ │ │ │ └── hang.ref │ │ │ ├── has-bug1 │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── has-bug1.as │ │ │ │ └── has-bug1.ref │ │ │ ├── incl │ │ │ │ ├── addone.as │ │ │ │ └── incl.as │ │ │ ├── intfact │ │ │ │ ├── .gitignore │ │ │ │ ├── intfact.as │ │ │ │ └── intfact.ref │ │ │ ├── issue2 │ │ │ │ ├── .gitignore │ │ │ │ ├── issue2.as │ │ │ │ └── issue2.ref │ │ │ ├── issue38 │ │ │ │ ├── .gitignore │ │ │ │ ├── issue38.as │ │ │ │ └── issue38.ref │ │ │ ├── iter │ │ │ │ └── iter.as │ │ │ ├── iter2 │ │ │ │ └── iter2.as │ │ │ ├── localcoerce │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── localcoerce.as │ │ │ │ └── localcoerce.ref │ │ │ ├── pol2 │ │ │ │ └── pol2.as │ │ │ ├── poly-type-expt │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── poly-type-expt.as │ │ │ │ └── poly-type-expt.ref │ │ │ ├── removebug │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── removebug.as │ │ │ │ └── removebug.ref │ │ │ ├── removebug2 │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── removebug2.as │ │ │ │ └── removebug2.ref │ │ │ ├── ret-exit │ │ │ │ └── ret-exit.as │ │ │ ├── testargs │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── testargs.as │ │ │ │ └── testargs.ref │ │ │ ├── testbug │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── testbug.as │ │ │ │ └── testbug.ref │ │ │ ├── trec │ │ │ │ └── trec.as │ │ │ ├── tst_integer │ │ │ │ └── tst_integer.as │ │ │ ├── type-constant │ │ │ │ ├── .gitignore │ │ │ │ ├── form.xml │ │ │ │ ├── type-constant.as │ │ │ │ └── type-constant.ref │ │ │ └── union-print │ │ │ │ └── union-print.as │ │ └── tutorial │ │ │ ├── session1.as │ │ │ ├── session2.as │ │ │ ├── session3.as │ │ │ ├── session4.as │ │ │ ├── sort0.as │ │ │ ├── sort1.as │ │ │ └── tutorial.tex │ ├── algebra │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── doc │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── tex │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── README.aldoc │ │ │ │ ├── aldoc.cls │ │ │ │ ├── aldoc.dtx │ │ │ │ ├── aldoc.ins │ │ │ │ ├── algbcat.fig │ │ │ │ ├── algebra.tex │ │ │ │ ├── algpolcat.fig │ │ │ │ ├── alltypes.tex │ │ │ │ ├── guide.tex │ │ │ │ ├── hyperref.cfg │ │ │ │ ├── intro.tex │ │ │ │ ├── macros.tex │ │ │ │ ├── refer.tex │ │ │ │ ├── referAldor.tex │ │ │ │ ├── title.tex │ │ │ │ └── ttyverb.sty │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── algebra.as │ │ │ └── algebrauid.as │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── algext │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sit_algext.as │ │ │ │ ├── sit_sae.as │ │ │ │ ├── sit_saexcpt.as │ │ │ │ └── sit_upmod.as │ │ │ ├── basic │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── compbug │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── sit_interp.as │ │ │ │ │ └── sit_shell.as │ │ │ │ ├── sit_complex.as │ │ │ │ ├── sit_indvar.as │ │ │ │ ├── sit_mkpring.as │ │ │ │ ├── sit_permut.as │ │ │ │ ├── sit_pring.as │ │ │ │ └── sit_product.as │ │ │ ├── categories │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── alg_cansimp.as │ │ │ │ ├── alg_ffield.as │ │ │ │ ├── alg_frering.as │ │ │ │ ├── alg_idxfrng.as │ │ │ │ ├── alg_modcmp.as │ │ │ │ ├── alg_primsrc.as │ │ │ │ ├── alg_rescls.as │ │ │ │ ├── alg_rring.as │ │ │ │ ├── sit_abgroup.as │ │ │ │ ├── sit_abmon.as │ │ │ │ ├── sit_algebra.as │ │ │ │ ├── sit_automor.as │ │ │ │ ├── sit_basic.as │ │ │ │ ├── sit_char0.as │ │ │ │ ├── sit_charp.as │ │ │ │ ├── sit_chrem.as │ │ │ │ ├── sit_comring.as │ │ │ │ ├── sit_dcmprng.as │ │ │ │ ├── sit_deriv.as │ │ │ │ ├── sit_diffext.as │ │ │ │ ├── sit_difring.as │ │ │ │ ├── sit_euclid.as │ │ │ │ ├── sit_field.as │ │ │ │ ├── sit_freealg.as │ │ │ │ ├── sit_freelar.as │ │ │ │ ├── sit_freelc.as │ │ │ │ ├── sit_freemod.as │ │ │ │ ├── sit_fset.as │ │ │ │ ├── sit_gcd.as │ │ │ │ ├── sit_gexpcat.as │ │ │ │ ├── sit_group.as │ │ │ │ ├── sit_idxfalg.as │ │ │ │ ├── sit_idxflar.as │ │ │ │ ├── sit_idxflc.as │ │ │ │ ├── sit_idxfmod.as │ │ │ │ ├── sit_intdom.as │ │ │ │ ├── sit_integer.as │ │ │ │ ├── sit_intgmp.as │ │ │ │ ├── sit_linarit.as │ │ │ │ ├── sit_module.as │ │ │ │ ├── sit_monoid.as │ │ │ │ ├── sit_ncid.as │ │ │ │ ├── sit_pable.as │ │ │ │ ├── sit_power.as │ │ │ │ ├── sit_prfcat0.as │ │ │ │ ├── sit_ptools.as │ │ │ │ ├── sit_qring.as │ │ │ │ ├── sit_ring.as │ │ │ │ ├── sit_spf0.as │ │ │ │ ├── sit_spfcat0.as │ │ │ │ └── sit_spzble.as │ │ │ ├── common.mk │ │ │ ├── extree │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── alg_leaf.as │ │ │ │ ├── alg_op.as │ │ │ │ ├── operators │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── sit_OPand.as │ │ │ │ │ ├── sit_OPassgn.as │ │ │ │ │ ├── sit_OPbigO.as │ │ │ │ │ ├── sit_OPcase.as │ │ │ │ │ ├── sit_OPcplex.as │ │ │ │ │ ├── sit_OPequal.as │ │ │ │ │ ├── sit_OPexpt.as │ │ │ │ │ ├── sit_OPfact.as │ │ │ │ │ ├── sit_OPif.as │ │ │ │ │ ├── sit_OPless.as │ │ │ │ │ ├── sit_OPlist.as │ │ │ │ │ ├── sit_OPllist.as │ │ │ │ │ ├── sit_OPmatrx.as │ │ │ │ │ ├── sit_OPminus.as │ │ │ │ │ ├── sit_OPmore.as │ │ │ │ │ ├── sit_OPnoteq.as │ │ │ │ │ ├── sit_OPplus.as │ │ │ │ │ ├── sit_OPprefx.as │ │ │ │ │ ├── sit_OPquot.as │ │ │ │ │ ├── sit_OPsubsc.as │ │ │ │ │ ├── sit_OPtimes.as │ │ │ │ │ └── sit_OPvect.as │ │ │ │ ├── parser │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── alg_tokens.as │ │ │ │ │ ├── sit_infexpr.as │ │ │ │ │ ├── sit_lspexpr.as │ │ │ │ │ ├── sit_maple.as │ │ │ │ │ ├── sit_parser.as │ │ │ │ │ ├── sit_scanner.as │ │ │ │ │ └── sit_token.as │ │ │ │ ├── sit_extree.as │ │ │ │ └── sit_optools.as │ │ │ ├── ffield │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── alg_pf2.as │ │ │ │ ├── sit_prfcat.as │ │ │ │ ├── sit_spf.as │ │ │ │ ├── sit_sprfcat.as │ │ │ │ ├── sit_sprfgcd.as │ │ │ │ ├── sit_sprfmat.as │ │ │ │ └── sit_zpf.as │ │ │ ├── fraction │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sit_lcqotct.as │ │ │ │ ├── sit_matquot.as │ │ │ │ ├── sit_qotbyc0.as │ │ │ │ ├── sit_qotbyct.as │ │ │ │ ├── sit_qotfcat.as │ │ │ │ ├── sit_qotfct0.as │ │ │ │ ├── sit_qotient.as │ │ │ │ ├── sit_quotby.as │ │ │ │ ├── sit_quotcat.as │ │ │ │ ├── sit_uflgqot.as │ │ │ │ └── sit_vecquot.as │ │ │ ├── logic │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sit_bit.as │ │ │ │ ├── sit_dnf.as │ │ │ │ ├── sit_idxatom.as │ │ │ │ ├── sit_lexpr.as │ │ │ │ └── sit_logiccat.as │ │ │ ├── mat │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── gauss │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── sit_dfge.as │ │ │ │ │ ├── sit_ff2ge.as │ │ │ │ │ ├── sit_ffge.as │ │ │ │ │ ├── sit_hermge.as │ │ │ │ │ ├── sit_linelim.as │ │ │ │ │ └── sit_oge.as │ │ │ │ ├── linalg │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── sit_bsolve.as │ │ │ │ │ ├── sit_laring.as │ │ │ │ │ ├── sit_linalg.as │ │ │ │ │ └── sit_overdet.as │ │ │ │ ├── linalg2 │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── alg_ffupla.as │ │ │ │ │ ├── sit_popov.as │ │ │ │ │ └── sit_upcrtla.as │ │ │ │ ├── linalg3 │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── sit_hensela.as │ │ │ │ ├── modular │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── compbug │ │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ │ ├── Makefile.in │ │ │ │ │ │ └── sit_speclin.as │ │ │ │ │ ├── sit_fullge.as │ │ │ │ │ ├── sit_halfge.as │ │ │ │ │ ├── sit_modpoge.as │ │ │ │ │ └── sit_zcrtla.as │ │ │ │ ├── sit_dnsemat.as │ │ │ │ ├── sit_matcat.as │ │ │ │ └── sit_vector.as │ │ │ ├── multpoly │ │ │ │ ├── exponent │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── OLD │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── sm_dirprod.as │ │ │ │ │ ├── sm_dirprodc.as │ │ │ │ │ ├── sm_expocat.as │ │ │ │ │ ├── sm_fvt.as │ │ │ │ │ ├── sm_listovar.as │ │ │ │ │ ├── sm_midl.as │ │ │ │ │ ├── sm_midrl.as │ │ │ │ │ ├── sm_mievc.as │ │ │ │ │ ├── sm_milex.as │ │ │ │ │ ├── sm_osymbol.as │ │ │ │ │ ├── sm_tuplovar.as │ │ │ │ │ ├── sm_vt.as │ │ │ │ │ └── sm_zevc.as │ │ │ │ ├── multpolycat │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── alg_defgcd.as │ │ │ │ │ ├── alg_poltype.as │ │ │ │ │ ├── alg_stdfrng.as │ │ │ │ │ ├── sm_famr0.as │ │ │ │ │ ├── sm_polring.as │ │ │ │ │ ├── sm_polring0.as │ │ │ │ │ └── sm_rmpcat0.as │ │ │ │ ├── multpolydata │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── sm_delist.as │ │ │ │ ├── multpolydom │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── TODO │ │ │ │ │ ├── alg_smp.as │ │ │ │ │ ├── sm_dmp0.as │ │ │ │ │ ├── sm_dmp1.as │ │ │ │ │ ├── sm_rmp.as │ │ │ │ │ ├── sm_rmpz.as │ │ │ │ │ └── sm_rmpzx.as │ │ │ │ ├── multpolypkg │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── TODO │ │ │ │ │ ├── alg_ZpUVres.as │ │ │ │ │ ├── alg_bivarpk.as │ │ │ │ │ ├── alg_disolve.as │ │ │ │ │ ├── alg_expo.as │ │ │ │ │ ├── alg_ezgcd.as │ │ │ │ │ ├── alg_mhensel.as │ │ │ │ │ └── alg_mresbiv.as │ │ │ │ └── multpolytest │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── alg_bivtst1.as │ │ │ │ │ ├── alg_bivtst2.as │ │ │ │ │ ├── alg_bivtst3.as │ │ │ │ │ ├── sm_dmp0pkgt.as │ │ │ │ │ ├── sm_exppkgt.as │ │ │ │ │ └── sm_pr0pkgt.as │ │ │ ├── numbers │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sit_primes.as │ │ │ │ ├── sit_primgen.as │ │ │ │ ├── sit_prmroot.as │ │ │ │ ├── sit_prmtabl.as │ │ │ │ └── sit_prmword.as │ │ │ ├── polyfactor0 │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── sit_fhensel.as │ │ │ │ ├── sit_zfactor.as │ │ │ │ ├── sit_zfring.as │ │ │ │ ├── sit_zfring0.as │ │ │ │ └── sit_zfringg.as │ │ │ ├── polyfactorp │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ └── sit_upfactp.as │ │ │ ├── series │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── alg_serpoly.as │ │ │ │ ├── compbug │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── sit_duts.as │ │ │ │ ├── sit_seqence.as │ │ │ │ └── sit_sercat.as │ │ │ ├── test │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── alg_assert.as │ │ │ │ ├── doc_intpoly.as │ │ │ │ ├── doc_poly.as │ │ │ │ ├── doc_series.as │ │ │ │ ├── tst_complex.as │ │ │ │ ├── tst_dup.as │ │ │ │ ├── tst_fold.as │ │ │ │ ├── tst_int.as │ │ │ │ ├── tst_mint.as │ │ │ │ ├── tst_random.as │ │ │ │ ├── tst_ring.as │ │ │ │ ├── tst_test.as │ │ │ │ └── tst_tstcat.as │ │ │ ├── univpoly │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── alg_debugdup.as │ │ │ │ ├── alg_sup.as │ │ │ │ ├── alg_sup0.as │ │ │ │ ├── alg_sup1.as │ │ │ │ ├── alg_unitool.as │ │ │ │ ├── alg_uprcr.as │ │ │ │ ├── bm_sup.as-OLD │ │ │ │ ├── categories │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── alg_chrem2.as │ │ │ │ │ ├── alg_modgcdp.as │ │ │ │ │ ├── alg_polydio.as │ │ │ │ │ ├── sit_fftring.as │ │ │ │ │ ├── sit_fring.as │ │ │ │ │ ├── sit_froot.as │ │ │ │ │ ├── sit_resprs.as │ │ │ │ │ ├── sit_sqfree.as │ │ │ │ │ ├── sit_ufalg.as │ │ │ │ │ ├── sit_uffalg.as │ │ │ │ │ ├── sit_ugring.as │ │ │ │ │ ├── sit_umonom.as │ │ │ │ │ ├── sit_upolalg.as │ │ │ │ │ ├── sit_upolc0.as │ │ │ │ │ └── sit_zring.as │ │ │ │ ├── gcd │ │ │ │ │ ├── Makefile.deps │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── sit_fullgcd.as │ │ │ │ │ ├── sit_gcdint.as │ │ │ │ │ ├── sit_gcdint0.as │ │ │ │ │ ├── sit_gcdintg.as │ │ │ │ │ ├── sit_halfgcd.as │ │ │ │ │ ├── sit_heugcd.as │ │ │ │ │ ├── sit_loggcd.as │ │ │ │ │ ├── sit_modgcd.as │ │ │ │ │ └── sit_modpgcd.as │ │ │ │ ├── sit_dup.as │ │ │ │ ├── sit_polkara.as │ │ │ │ ├── sit_spread.as │ │ │ │ ├── sit_sup.as-OLD │ │ │ │ ├── sit_ufacpol.as │ │ │ │ └── sit_upolc.as │ │ │ └── util │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ └── alg_version.as │ │ └── test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Tests.am │ │ │ ├── Trandom │ │ │ ├── .gitignore │ │ │ ├── Trandom.as │ │ │ └── Trandom.ref │ │ │ ├── bug1335 │ │ │ ├── .gitignore │ │ │ ├── bug1335.as │ │ │ └── bug1335.ref │ │ │ ├── bug1341 │ │ │ ├── .gitignore │ │ │ ├── bug1341.as │ │ │ └── bug1341.ref │ │ │ ├── bug1342 │ │ │ ├── .gitignore │ │ │ ├── bug1342.as │ │ │ └── bug1342.ref │ │ │ ├── bugExtend2 │ │ │ ├── .gitignore │ │ │ ├── bugExtend2.as │ │ │ ├── bugExtend2.ref │ │ │ └── form.xml │ │ │ ├── bugreport_1350 │ │ │ ├── .gitignore │ │ │ ├── bugreport_1350.as │ │ │ ├── bugreport_1350.ref │ │ │ └── form.xml │ │ │ ├── bugreport_1369 │ │ │ ├── .gitignore │ │ │ ├── bugreport_1369.as │ │ │ ├── bugreport_1369.ref │ │ │ └── form.xml │ │ │ ├── bugreport_1370 │ │ │ ├── .gitignore │ │ │ ├── bugreport_1370.as │ │ │ ├── bugreport_1370.ref │ │ │ └── form.xml │ │ │ ├── issue56 │ │ │ ├── .gitignore │ │ │ ├── issue56.as │ │ │ └── issue56.ref │ │ │ ├── max │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── max.as │ │ │ └── max.ref │ │ │ ├── modpbug │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── modpbug.as │ │ │ └── modpbug.ref │ │ │ ├── optbug │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── optbug.as │ │ │ └── optbug.ref │ │ │ ├── optbug2 │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── optbug2.as │ │ │ └── optbug2.ref │ │ │ ├── opteqbug │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── opteqbug.as │ │ │ └── opteqbug.ref │ │ │ ├── pftest │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── pftest.as │ │ │ └── pftest.ref │ │ │ ├── primetest │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── primetest.as │ │ │ └── primetest.ref │ │ │ ├── test_complex.as │ │ │ └── tstSprsUniPol │ │ │ ├── .gitignore │ │ │ ├── form.xml │ │ │ ├── support.as │ │ │ ├── tstSprsUniPol.as │ │ │ └── tstSprsUniPol.ref │ ├── ax0 │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── ax0.as │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── al │ │ │ │ ├── Makefile.deps │ │ │ │ └── Makefile.in │ │ │ ├── ap │ │ │ │ ├── aggcat.ap │ │ │ │ ├── any.ap │ │ │ │ ├── array1.ap │ │ │ │ ├── array2.ap │ │ │ │ ├── basecliq.ap │ │ │ │ ├── equation1.ap │ │ │ │ ├── equation2.ap │ │ │ │ ├── float.ap │ │ │ │ ├── fr.ap │ │ │ │ ├── fraction.ap │ │ │ │ ├── fspace.ap │ │ │ │ ├── indexedp.ap │ │ │ │ ├── integer.ap │ │ │ │ ├── kl.ap │ │ │ │ ├── list.ap │ │ │ │ ├── matcat.ap │ │ │ │ ├── matrix.ap │ │ │ │ ├── misc.ap │ │ │ │ ├── mkfunc.ap │ │ │ │ ├── multpoly.ap │ │ │ │ ├── op.ap │ │ │ │ ├── patmatch1.ap │ │ │ │ ├── patmatch2.ap │ │ │ │ ├── pattern.ap │ │ │ │ ├── poly.ap │ │ │ │ ├── polycat.ap │ │ │ │ ├── seg.ap │ │ │ │ ├── sex.ap │ │ │ │ ├── sf.ap │ │ │ │ ├── si.ap │ │ │ │ ├── stream.ap │ │ │ │ ├── symbol.ap │ │ │ │ ├── variable.ap │ │ │ │ └── vector.ap │ │ │ ├── attrib.as │ │ │ ├── ax.lst │ │ │ ├── axext_l.lsp │ │ │ ├── axextend.as │ │ │ ├── axiom.as │ │ │ ├── axiom.lst │ │ │ ├── axlit.as │ │ │ ├── minimach.as │ │ │ ├── mkax.lsp │ │ │ ├── nax │ │ │ │ ├── equation.ap │ │ │ │ ├── evalable.ap │ │ │ │ ├── patmatch1.ap │ │ │ │ └── patmatch2.ap │ │ │ └── stub.as │ │ └── test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── axlist0.as │ │ │ ├── coerce1.as │ │ │ ├── coerce2.as │ │ │ ├── coerce3.as │ │ │ ├── coerce4.as │ │ │ ├── coerce5.as │ │ │ ├── convert0.as │ │ │ ├── hilbert0.as │ │ │ ├── intcat0.as │ │ │ ├── intcat1.as │ │ │ ├── matops.as │ │ │ ├── segext5.as │ │ │ ├── segext6.as │ │ │ ├── segext7.as │ │ │ ├── supcat2.as │ │ │ ├── supcat3.as │ │ │ ├── t619.as │ │ │ ├── vector0.as │ │ │ ├── vector1.as │ │ │ └── vector2.as │ ├── axldem │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── axldem.as │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── al │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── dirprod.as │ │ │ │ ├── gb.as │ │ │ │ ├── ibits.as │ │ │ │ ├── lmdict.as │ │ │ │ ├── matopdom.as │ │ │ │ ├── matrix.as │ │ │ │ ├── nni.as │ │ │ │ ├── poly.as │ │ │ │ ├── poly3.as │ │ │ │ ├── polycat.as │ │ │ │ ├── prime.as │ │ │ │ ├── quanc8.as │ │ │ │ ├── random.as │ │ │ │ ├── spf.as │ │ │ │ └── vector.as │ │ │ ├── axldem.lst │ │ │ └── debug.sh │ │ └── test │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Tests.am │ │ │ ├── bug1089 │ │ │ ├── .gitignore │ │ │ ├── bug1089.as │ │ │ └── bug1089.ref │ │ │ ├── bug1168 │ │ │ ├── .gitignore │ │ │ ├── bug1168.as │ │ │ └── bug1168.ref │ │ │ ├── catdef2 │ │ │ ├── .gitignore │ │ │ ├── catdef2.as │ │ │ └── catdef2.ref │ │ │ ├── f21 │ │ │ ├── .gitignore │ │ │ ├── f21.as │ │ │ └── f21.ref │ │ │ ├── float2 │ │ │ ├── .gitignore │ │ │ ├── float2.as │ │ │ └── float2.ref │ │ │ ├── gbtest1 │ │ │ ├── .gitignore │ │ │ ├── gbtest1.as │ │ │ └── gbtest1.ref │ │ │ ├── hilbert1 │ │ │ ├── .gitignore │ │ │ ├── hilbert1.as │ │ │ └── hilbert1.ref │ │ │ ├── intfact │ │ │ ├── .gitignore │ │ │ ├── intfact.as │ │ │ └── intfact.ref │ │ │ ├── iroots │ │ │ ├── .gitignore │ │ │ ├── iroots.as │ │ │ └── iroots.ref │ │ │ ├── scobind1 │ │ │ ├── .gitignore │ │ │ ├── scobind1.as │ │ │ └── scobind1.ref │ │ │ └── type6 │ │ │ ├── .gitignore │ │ │ ├── type6.as │ │ │ └── type6.ref │ ├── axllib │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── include │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── axllib.as │ │ ├── src │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── al │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile.deps │ │ │ │ ├── Makefile.in │ │ │ │ ├── array.as │ │ │ │ ├── axl_boolean.as │ │ │ │ ├── axl_byte.as │ │ │ │ ├── axl_char.as │ │ │ │ ├── axl_float.as │ │ │ │ ├── axlcat.as │ │ │ │ ├── basic.as │ │ │ │ ├── bpower.as │ │ │ │ ├── buffer.as │ │ │ │ ├── complex.as │ │ │ │ ├── debug.as │ │ │ │ ├── dfloat.as │ │ │ │ ├── efuns.as │ │ │ │ ├── except.as │ │ │ │ ├── farray.as │ │ │ │ ├── file.as │ │ │ │ ├── fmdarray.as │ │ │ │ ├── fmtout.as │ │ │ │ ├── fname.as │ │ │ │ ├── format.as │ │ │ │ ├── fprint.as │ │ │ │ ├── fstring.as │ │ │ │ ├── gener.as │ │ │ │ ├── hinteger.as │ │ │ │ ├── ieeectl.as │ │ │ │ ├── imod.as │ │ │ │ ├── integer.as │ │ │ │ ├── lang.as │ │ │ │ ├── langx.as │ │ │ │ ├── list.as │ │ │ │ ├── list2.as │ │ │ │ ├── machine.as │ │ │ │ ├── object.as │ │ │ │ ├── opsys.as │ │ │ │ ├── oslow.as │ │ │ │ ├── parray.as │ │ │ │ ├── partial.as │ │ │ │ ├── pfloat.as │ │ │ │ ├── pkarray.as │ │ │ │ ├── pointer.as │ │ │ │ ├── ratio.as │ │ │ │ ├── ref.as │ │ │ │ ├── rtexns.as │ │ │ │ ├── segment.as │ │ │ │ ├── sfloat.as │ │ │ │ ├── sinteger.as │ │ │ │ ├── sort.as │ │ │ │ ├── string.as │ │ │ │ ├── table.as │ │ │ │ ├── textread.as │ │ │ │ ├── textwrit.as │ │ │ │ ├── tuple.as │ │ │ │ ├── uarray.as │ │ │ │ └── xassert.as │ │ │ └── mndWrite.c │ │ └── test │ │ │ ├── .gitignore │ │ │ ├── 1test │ │ │ ├── .gitignore │ │ │ ├── 1test.as │ │ │ └── 1test.ref │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── Tests.am │ │ │ ├── abcheck0 │ │ │ ├── .gitignore │ │ │ └── abcheck0.as │ │ │ ├── abcheck1 │ │ │ ├── .gitignore │ │ │ └── abcheck1.as │ │ │ ├── abcheck2 │ │ │ ├── .gitignore │ │ │ └── abcheck2.as │ │ │ ├── abcheck3 │ │ │ ├── .gitignore │ │ │ ├── abcheck3.as │ │ │ └── abcheck3.ref │ │ │ ├── abnorm0 │ │ │ ├── .gitignore │ │ │ └── abnorm0.as │ │ │ ├── abnorm1 │ │ │ ├── .gitignore │ │ │ └── abnorm1.as │ │ │ ├── abnorm2 │ │ │ ├── .gitignore │ │ │ └── abnorm2.as │ │ │ ├── apply0 │ │ │ ├── .gitignore │ │ │ └── apply0.as │ │ │ ├── ar0.sh │ │ │ ├── ar1.sh │ │ │ ├── ar2.sh │ │ │ ├── ar3.sh │ │ │ ├── ar4.sh │ │ │ ├── ar5.sh │ │ │ ├── ar6.sh │ │ │ ├── array0 │ │ │ ├── .gitignore │ │ │ ├── array0.as │ │ │ └── array0.ref │ │ │ ├── array1 │ │ │ ├── .gitignore │ │ │ ├── array1.as │ │ │ └── array1.ref │ │ │ ├── arrepl0.sh │ │ │ ├── arrepl1.sh │ │ │ ├── arrepl1a │ │ │ ├── .gitignore │ │ │ ├── arrepl1a.as │ │ │ └── arrepl1a.ref │ │ │ ├── arrepl1b │ │ │ ├── .gitignore │ │ │ └── arrepl1b.as │ │ │ ├── arrepl1c │ │ │ ├── .gitignore │ │ │ └── arrepl1c.as │ │ │ ├── arrepla │ │ │ ├── .gitignore │ │ │ ├── arrepla.as │ │ │ └── arrepla.ref │ │ │ ├── arreplb │ │ │ ├── .gitignore │ │ │ └── arreplb.as │ │ │ ├── arreplc │ │ │ ├── .gitignore │ │ │ └── arreplc.as │ │ │ ├── assign0 │ │ │ ├── .gitignore │ │ │ └── assign0.as │ │ │ ├── assign1 │ │ │ ├── .gitignore │ │ │ ├── assign1.as │ │ │ └── assign1.ref │ │ │ ├── assign2 │ │ │ ├── .gitignore │ │ │ └── assign2.as │ │ │ ├── assign3 │ │ │ ├── .gitignore │ │ │ └── assign3.as │ │ │ ├── assign4 │ │ │ ├── .gitignore │ │ │ └── assign4.as │ │ │ ├── basic │ │ │ ├── .gitignore │ │ │ └── basic.as │ │ │ ├── big │ │ │ ├── .gitignore │ │ │ ├── big.as │ │ │ └── big.ref │ │ │ ├── bigint-t.sh │ │ │ ├── bigmand │ │ │ ├── .gitignore │ │ │ ├── bigmand.as │ │ │ └── bigmand.ref │ │ │ ├── binadd │ │ │ ├── .gitignore │ │ │ ├── binadd.as │ │ │ └── binadd.ref │ │ │ ├── bitv-t.sh │ │ │ ├── btree-t.sh │ │ │ ├── buffer-t.sh │ │ │ ├── bug │ │ │ ├── .gitignore │ │ │ ├── bug.as │ │ │ └── bug.ref │ │ │ ├── bug1008 │ │ │ ├── .gitignore │ │ │ ├── bug1008.as │ │ │ └── bug1008.ref │ │ │ ├── bug1009 │ │ │ ├── .gitignore │ │ │ ├── bug1009.as │ │ │ └── bug1009.ref │ │ │ ├── bug1015 │ │ │ ├── .gitignore │ │ │ ├── bug1015.as │ │ │ └── bug1015.ref │ │ │ ├── bug1020 │ │ │ ├── .gitignore │ │ │ ├── bug1020.as │ │ │ └── bug1020.ref │ │ │ ├── bug1021 │ │ │ ├── .gitignore │ │ │ ├── bug1021.as │ │ │ └── bug1021.ref │ │ │ ├── bug1022 │ │ │ ├── .gitignore │ │ │ ├── bug1022.as │ │ │ └── bug1022.ref │ │ │ ├── bug1023 │ │ │ ├── .gitignore │ │ │ ├── bug1023.as │ │ │ └── bug1023.ref │ │ │ ├── bug1024 │ │ │ ├── .gitignore │ │ │ ├── bug1024.as │ │ │ └── bug1024.ref │ │ │ ├── bug1025 │ │ │ ├── .gitignore │ │ │ ├── bug1025.as │ │ │ └── bug1025.ref │ │ │ ├── bug1027 │ │ │ ├── .gitignore │ │ │ ├── bug1027.as │ │ │ └── bug1027.ref │ │ │ ├── bug1028 │ │ │ ├── .gitignore │ │ │ ├── bug1028.as │ │ │ └── bug1028.ref │ │ │ ├── bug1029 │ │ │ ├── .gitignore │ │ │ ├── bug1029.as │ │ │ └── bug1029.ref │ │ │ ├── bug1030 │ │ │ ├── .gitignore │ │ │ ├── bug1030.as │ │ │ └── bug1030.ref │ │ │ ├── bug1031 │ │ │ ├── .gitignore │ │ │ ├── bug1031.as │ │ │ └── bug1031.ref │ │ │ ├── bug1038 │ │ │ ├── .gitignore │ │ │ ├── bug1038.as │ │ │ └── bug1038.ref │ │ │ ├── bug1039 │ │ │ ├── .gitignore │ │ │ ├── bug1039.as │ │ │ └── bug1039.ref │ │ │ ├── bug1041 │ │ │ ├── .gitignore │ │ │ ├── bug1041.as │ │ │ └── bug1041.ref │ │ │ ├── bug1044 │ │ │ ├── .gitignore │ │ │ ├── bug1044.as │ │ │ └── bug1044.ref │ │ │ ├── bug1045 │ │ │ ├── .gitignore │ │ │ ├── bug1045.as │ │ │ └── bug1045.ref │ │ │ ├── bug1046 │ │ │ ├── .gitignore │ │ │ ├── bug1046.as │ │ │ └── bug1046.ref │ │ │ ├── bug1053 │ │ │ ├── .gitignore │ │ │ ├── bug1053.as │ │ │ └── bug1053.ref │ │ │ ├── bug1054 │ │ │ ├── .gitignore │ │ │ ├── bug1054.as │ │ │ └── bug1054.ref │ │ │ ├── bug1055 │ │ │ ├── .gitignore │ │ │ ├── bug1055.as │ │ │ └── bug1055.ref │ │ │ ├── bug1056 │ │ │ ├── .gitignore │ │ │ ├── bug1056.as │ │ │ └── bug1056.ref │ │ │ ├── bug1061 │ │ │ ├── .gitignore │ │ │ ├── bug1061.as │ │ │ └── bug1061.ref │ │ │ ├── bug1062 │ │ │ ├── .gitignore │ │ │ ├── bug1062.as │ │ │ └── bug1062.ref │ │ │ ├── bug1063 │ │ │ ├── .gitignore │ │ │ ├── bug1063.as │ │ │ └── bug1063.ref │ │ │ ├── bug1064 │ │ │ ├── .gitignore │ │ │ ├── bug1064.as │ │ │ └── bug1064.ref │ │ │ ├── bug1065 │ │ │ ├── .gitignore │ │ │ ├── bug1065.as │ │ │ └── bug1065.ref │ │ │ ├── bug1066 │ │ │ ├── .gitignore │ │ │ ├── bug1066.as │ │ │ └── bug1066.ref │ │ │ ├── bug1067 │ │ │ ├── .gitignore │ │ │ ├── bug1067.as │ │ │ └── bug1067.ref │ │ │ ├── bug1069 │ │ │ ├── .gitignore │ │ │ ├── bug1069.as │ │ │ └── bug1069.ref │ │ │ ├── bug1071 │ │ │ ├── .gitignore │ │ │ ├── bug1071.as │ │ │ └── bug1071.ref │ │ │ ├── bug1074 │ │ │ ├── .gitignore │ │ │ ├── bug1074.as │ │ │ └── bug1074.ref │ │ │ ├── bug1076 │ │ │ ├── .gitignore │ │ │ ├── bug1076.as │ │ │ └── bug1076.ref │ │ │ ├── bug1077 │ │ │ ├── .gitignore │ │ │ ├── bug1077.as │ │ │ └── bug1077.ref │ │ │ ├── bug1078 │ │ │ ├── .gitignore │ │ │ ├── bug1078.as │ │ │ └── bug1078.ref │ │ │ ├── bug1079 │ │ │ ├── .gitignore │ │ │ ├── bug1079.as │ │ │ └── bug1079.ref │ │ │ ├── bug1087 │ │ │ ├── .gitignore │ │ │ ├── bug1087.as │ │ │ └── bug1087.ref │ │ │ ├── bug1090 │ │ │ ├── .gitignore │ │ │ ├── bug1090.as │ │ │ └── bug1090.ref │ │ │ ├── bug1091 │ │ │ ├── .gitignore │ │ │ ├── bug1091.as │ │ │ └── bug1091.ref │ │ │ ├── bug1092 │ │ │ ├── .gitignore │ │ │ ├── bug1092.as │ │ │ └── bug1092.ref │ │ │ ├── bug1093 │ │ │ ├── .gitignore │ │ │ ├── bug1093.as │ │ │ └── bug1093.ref │ │ │ ├── bug1096 │ │ │ ├── .gitignore │ │ │ ├── bug1096.as │ │ │ └── bug1096.ref │ │ │ ├── bug1098 │ │ │ ├── .gitignore │ │ │ ├── bug1098.as │ │ │ └── bug1098.ref │ │ │ ├── bug1099 │ │ │ ├── .gitignore │ │ │ ├── bug1099.as │ │ │ └── bug1099.ref │ │ │ ├── bug1101 │ │ │ ├── .gitignore │ │ │ ├── bug1101.as │ │ │ └── bug1101.ref │ │ │ ├── bug1105 │ │ │ ├── .gitignore │ │ │ ├── bug1105.as │ │ │ └── bug1105.ref │ │ │ ├── bug1106 │ │ │ ├── .gitignore │ │ │ ├── bug1106.as │ │ │ └── bug1106.ref │ │ │ ├── bug1110 │ │ │ ├── .gitignore │ │ │ ├── bug1110.as │ │ │ └── bug1110.ref │ │ │ ├── bug1111 │ │ │ ├── .gitignore │ │ │ ├── bug1111.as │ │ │ └── bug1111.ref │ │ │ ├── bug1113 │ │ │ ├── .gitignore │ │ │ ├── bug1113.as │ │ │ └── bug1113.ref │ │ │ ├── bug1114 │ │ │ ├── .gitignore │ │ │ ├── bug1114.as │ │ │ └── bug1114.ref │ │ │ ├── bug1115 │ │ │ ├── .gitignore │ │ │ ├── bug1115.as │ │ │ └── bug1115.ref │ │ │ ├── bug1119 │ │ │ ├── .gitignore │ │ │ ├── bug1119.as │ │ │ └── bug1119.ref │ │ │ ├── bug1121 │ │ │ ├── .gitignore │ │ │ ├── bug1121.as │ │ │ └── bug1121.ref │ │ │ ├── bug1123 │ │ │ ├── .gitignore │ │ │ ├── bug1123.as │ │ │ └── bug1123.ref │ │ │ ├── bug1125 │ │ │ ├── .gitignore │ │ │ ├── bug1125.as │ │ │ └── bug1125.ref │ │ │ ├── bug1127 │ │ │ ├── .gitignore │ │ │ ├── bug1127.as │ │ │ └── bug1127.ref │ │ │ ├── bug1129 │ │ │ ├── .gitignore │ │ │ ├── bug1129.as │ │ │ └── bug1129.ref │ │ │ ├── bug1130 │ │ │ ├── .gitignore │ │ │ ├── bug1130.as │ │ │ └── bug1130.ref │ │ │ ├── bug1131 │ │ │ ├── .gitignore │ │ │ ├── bug1131.as │ │ │ └── bug1131.ref │ │ │ ├── bug1132 │ │ │ ├── .gitignore │ │ │ ├── bug1132.as │ │ │ └── bug1132.ref │ │ │ ├── bug1137 │ │ │ ├── .gitignore │ │ │ ├── bug1137.as │ │ │ └── bug1137.ref │ │ │ ├── bug1139 │ │ │ ├── .gitignore │ │ │ ├── bug1139.as │ │ │ └── bug1139.ref │ │ │ ├── bug1142 │ │ │ ├── .gitignore │ │ │ ├── bug1142.as │ │ │ └── bug1142.ref │ │ │ ├── bug1144 │ │ │ ├── .gitignore │ │ │ └── bug1144.as │ │ │ ├── bug1145 │ │ │ ├── .gitignore │ │ │ ├── bug1145.as │ │ │ └── bug1145.ref │ │ │ ├── bug1149 │ │ │ ├── .gitignore │ │ │ ├── bug1149.as │ │ │ └── bug1149.ref │ │ │ ├── bug1151 │ │ │ ├── .gitignore │ │ │ ├── bug1151.as │ │ │ └── bug1151.ref │ │ │ ├── bug1154 │ │ │ ├── .gitignore │ │ │ └── bug1154.as │ │ │ ├── bug1159 │ │ │ ├── .gitignore │ │ │ ├── bug1159.as │ │ │ └── bug1159.ref │ │ │ ├── bug1160 │ │ │ ├── .gitignore │ │ │ ├── bug1160.as │ │ │ └── bug1160.ref │ │ │ ├── bug1161 │ │ │ ├── .gitignore │ │ │ ├── bug1161.as │ │ │ └── bug1161.ref │ │ │ ├── bug1162 │ │ │ ├── .gitignore │ │ │ ├── bug1162.as │ │ │ └── bug1162.ref │ │ │ ├── bug1164 │ │ │ ├── .gitignore │ │ │ ├── bug1164.as │ │ │ └── bug1164.ref │ │ │ ├── bug1165 │ │ │ ├── .gitignore │ │ │ └── bug1165.as │ │ │ ├── bug1166 │ │ │ ├── .gitignore │ │ │ ├── bug1166.as │ │ │ └── bug1166.ref │ │ │ ├── bug1170 │ │ │ ├── .gitignore │ │ │ ├── bug1170.as │ │ │ └── bug1170.ref │ │ │ ├── bug1171 │ │ │ ├── .gitignore │ │ │ ├── bug1171.as │ │ │ └── bug1171.ref │ │ │ ├── bug1172 │ │ │ ├── .gitignore │ │ │ ├── bug1172.as │ │ │ └── bug1172.ref │ │ │ ├── bug1176 │ │ │ ├── .gitignore │ │ │ ├── bug1176.as │ │ │ └── bug1176.ref │ │ │ ├── bug1177 │ │ │ ├── .gitignore │ │ │ ├── bug1177.as │ │ │ └── bug1177.ref │ │ │ ├── bug1178 │ │ │ ├── .gitignore │ │ │ ├── bug1178.as │ │ │ └── bug1178.ref │ │ │ ├── bug1179 │ │ │ ├── .gitignore │ │ │ ├── bug1179.as │ │ │ └── bug1179.ref │ │ │ ├── bug1180 │ │ │ ├── .gitignore │ │ │ ├── bug1180.as │ │ │ └── bug1180.ref │ │ │ ├── bug1182 │ │ │ ├── .gitignore │ │ │ ├── bug1182.as │ │ │ └── bug1182.ref │ │ │ ├── bug1183 │ │ │ ├── .gitignore │ │ │ ├── bug1183.as │ │ │ └── bug1183.ref │ │ │ ├── bug1184 │ │ │ ├── .gitignore │ │ │ ├── bug1184.as │ │ │ └── bug1184.ref │ │ │ ├── bug1188 │ │ │ ├── .gitignore │ │ │ ├── bug1188.as │ │ │ └── bug1188.ref │ │ │ ├── bug1189 │ │ │ ├── .gitignore │ │ │ └── bug1189.as │ │ │ ├── bug1190 │ │ │ ├── .gitignore │ │ │ ├── bug1190.as │ │ │ └── bug1190.ref │ │ │ ├── bug1191 │ │ │ ├── .gitignore │ │ │ ├── bug1191.as │ │ │ └── bug1191.ref │ │ │ ├── bug1192 │ │ │ ├── .gitignore │ │ │ └── bug1192.as │ │ │ ├── bug1193 │ │ │ ├── .gitignore │ │ │ ├── bug1193.as │ │ │ └── bug1193.ref │ │ │ ├── bug1195 │ │ │ ├── .gitignore │ │ │ ├── bug1195.as │ │ │ └── bug1195.ref │ │ │ ├── bug1196 │ │ │ ├── .gitignore │ │ │ ├── bug1196.as │ │ │ └── bug1196.ref │ │ │ ├── bug1198 │ │ │ ├── .gitignore │ │ │ ├── bug1198.as │ │ │ └── bug1198.ref │ │ │ ├── bug1199 │ │ │ ├── .gitignore │ │ │ ├── bug1199.as │ │ │ └── bug1199.ref │ │ │ ├── bug1200 │ │ │ ├── .gitignore │ │ │ ├── bug1200.as │ │ │ └── bug1200.ref │ │ │ ├── bug1202 │ │ │ ├── .gitignore │ │ │ ├── bug1202.as │ │ │ └── bug1202.ref │ │ │ ├── bug1204 │ │ │ ├── .gitignore │ │ │ ├── bug1204.as │ │ │ └── bug1204.ref │ │ │ ├── bug1206 │ │ │ ├── .gitignore │ │ │ ├── bug1206.as │ │ │ └── bug1206.ref │ │ │ ├── bug1210 │ │ │ ├── .gitignore │ │ │ └── bug1210.as │ │ │ ├── bug1211 │ │ │ ├── .gitignore │ │ │ ├── bug1211.as │ │ │ └── bug1211.ref │ │ │ ├── bug1212 │ │ │ ├── .gitignore │ │ │ ├── bug1212.as │ │ │ └── bug1212.ref │ │ │ ├── bug1213.sh │ │ │ ├── bug1217 │ │ │ ├── .gitignore │ │ │ ├── bug1217.as │ │ │ └── bug1217.ref │ │ │ ├── bug1219 │ │ │ ├── .gitignore │ │ │ ├── bug1219.as │ │ │ └── bug1219.ref │ │ │ ├── bug1220 │ │ │ ├── .gitignore │ │ │ ├── bug1220.as │ │ │ └── bug1220.ref │ │ │ ├── bug1221 │ │ │ ├── .gitignore │ │ │ ├── bug1221.as │ │ │ └── bug1221.ref │ │ │ ├── bug1224 │ │ │ ├── .gitignore │ │ │ ├── bug1224.as │ │ │ └── bug1224.ref │ │ │ ├── bug1226.sh │ │ │ ├── bug1228 │ │ │ ├── .gitignore │ │ │ ├── bug1228.as │ │ │ └── bug1228.ref │ │ │ ├── bug1234 │ │ │ ├── .gitignore │ │ │ ├── bug1234.as │ │ │ └── bug1234.ref │ │ │ ├── bug1235 │ │ │ ├── .gitignore │ │ │ ├── bug1235.as │ │ │ └── bug1235.ref │ │ │ ├── bug1237 │ │ │ ├── .gitignore │ │ │ ├── bug1237.as │ │ │ └── bug1237.ref │ │ │ ├── bug1238 │ │ │ ├── .gitignore │ │ │ └── bug1238.as │ │ │ ├── bug1242 │ │ │ ├── .gitignore │ │ │ ├── bug1242.as │ │ │ └── bug1242.ref │ │ │ ├── bug1246 │ │ │ ├── .gitignore │ │ │ └── bug1246.as │ │ │ ├── bug1247 │ │ │ ├── .gitignore │ │ │ └── bug1247.as │ │ │ ├── bug1248 │ │ │ ├── .gitignore │ │ │ ├── bug1248.as │ │ │ └── bug1248.ref │ │ │ ├── bug1250 │ │ │ ├── .gitignore │ │ │ ├── bug1250.as │ │ │ └── bug1250.ref │ │ │ ├── bug1252 │ │ │ ├── .gitignore │ │ │ ├── bug1252.as │ │ │ └── bug1252.ref │ │ │ ├── bug1253 │ │ │ ├── .gitignore │ │ │ ├── bug1253.as │ │ │ └── bug1253.ref │ │ │ ├── bug1260 │ │ │ ├── .gitignore │ │ │ ├── bug1260.as │ │ │ └── bug1260.ref │ │ │ ├── bug1261 │ │ │ ├── .gitignore │ │ │ ├── bug1261.as │ │ │ └── bug1261.ref │ │ │ ├── bug1263 │ │ │ ├── .gitignore │ │ │ ├── bug1263.as │ │ │ └── bug1263.ref │ │ │ ├── bug1265 │ │ │ ├── .gitignore │ │ │ ├── bug1265.as │ │ │ └── bug1265.ref │ │ │ ├── bug1266 │ │ │ ├── .gitignore │ │ │ ├── bug1266.as │ │ │ └── bug1266.ref │ │ │ ├── bug1268 │ │ │ ├── .gitignore │ │ │ ├── bug1268.as │ │ │ └── bug1268.ref │ │ │ ├── bug1269 │ │ │ ├── .gitignore │ │ │ ├── bug1269.as │ │ │ └── bug1269.ref │ │ │ ├── bug1270 │ │ │ ├── .gitignore │ │ │ ├── bug1270.as │ │ │ └── bug1270.ref │ │ │ ├── bug1272 │ │ │ ├── .gitignore │ │ │ ├── bug1272.as │ │ │ └── bug1272.ref │ │ │ ├── bug1275.sh │ │ │ ├── bug1275 │ │ │ ├── .gitignore │ │ │ ├── bug1275.as │ │ │ └── bug1275.ref │ │ │ ├── bug1277 │ │ │ ├── .gitignore │ │ │ ├── bug1277.as │ │ │ └── bug1277.ref │ │ │ ├── bug1278 │ │ │ ├── .gitignore │ │ │ ├── bug1278.as │ │ │ └── bug1278.ref │ │ │ ├── bug1279 │ │ │ ├── .gitignore │ │ │ ├── bug1279.as │ │ │ └── bug1279.ref │ │ │ ├── bug1280 │ │ │ ├── .gitignore │ │ │ ├── bug1280.as │ │ │ └── bug1280.ref │ │ │ ├── bug1281 │ │ │ ├── .gitignore │ │ │ ├── bug1281.as │ │ │ └── bug1281.ref │ │ │ ├── bug1285 │ │ │ ├── .gitignore │ │ │ ├── bug1285.as │ │ │ └── bug1285.ref │ │ │ ├── bug1286 │ │ │ ├── .gitignore │ │ │ ├── bug1286.as │ │ │ └── bug1286.ref │ │ │ ├── bug1287 │ │ │ ├── .gitignore │ │ │ ├── bug1287.as │ │ │ └── bug1287.ref │ │ │ ├── bug1290 │ │ │ ├── .gitignore │ │ │ ├── bug1290.as │ │ │ └── bug1290.ref │ │ │ ├── bug1295 │ │ │ ├── .gitignore │ │ │ ├── bug1295.as │ │ │ └── bug1295.ref │ │ │ ├── bug1301 │ │ │ ├── .gitignore │ │ │ ├── bug1301.as │ │ │ └── bug1301.ref │ │ │ ├── bug1302 │ │ │ ├── .gitignore │ │ │ ├── bug1302.as │ │ │ └── bug1302.ref │ │ │ ├── bug1303 │ │ │ ├── .gitignore │ │ │ ├── bug1303.as │ │ │ └── bug1303.ref │ │ │ ├── bug1307 │ │ │ ├── .gitignore │ │ │ ├── bug1307.as │ │ │ └── bug1307.ref │ │ │ ├── bug1310 │ │ │ ├── .gitignore │ │ │ ├── bug1310.as │ │ │ └── bug1310.ref │ │ │ ├── bug1311 │ │ │ ├── .gitignore │ │ │ ├── bug1311.as │ │ │ └── bug1311.ref │ │ │ ├── bug1313 │ │ │ ├── .gitignore │ │ │ ├── bug1313.as │ │ │ └── bug1313.ref │ │ │ ├── bug1314 │ │ │ ├── .gitignore │ │ │ ├── bug1314.as │ │ │ └── bug1314.ref │ │ │ ├── bug1315 │ │ │ ├── .gitignore │ │ │ ├── bug1315.as │ │ │ └── bug1315.ref │ │ │ ├── bug1316 │ │ │ ├── .gitignore │ │ │ ├── bug1316.as │ │ │ └── bug1316.ref │ │ │ ├── bug1317 │ │ │ ├── .gitignore │ │ │ ├── bug1317.as │ │ │ └── bug1317.ref │ │ │ ├── bug1318 │ │ │ ├── .gitignore │ │ │ ├── bug1318.as │ │ │ └── bug1318.ref │ │ │ ├── bug1319 │ │ │ ├── .gitignore │ │ │ ├── bug1319.as │ │ │ └── bug1319.ref │ │ │ ├── bug1324 │ │ │ ├── .gitignore │ │ │ ├── bug1324.as │ │ │ └── bug1324.ref │ │ │ ├── bug1325 │ │ │ ├── .gitignore │ │ │ ├── bug1325.as │ │ │ └── bug1325.ref │ │ │ ├── bug1327 │ │ │ ├── .gitignore │ │ │ ├── bug1327.as │ │ │ └── bug1327.ref │ │ │ ├── bug1328 │ │ │ ├── .gitignore │ │ │ ├── bug1328.as │ │ │ └── bug1328.ref │ │ │ ├── bug1331 │ │ │ ├── .gitignore │ │ │ ├── bug1331.as │ │ │ └── bug1331.ref │ │ │ ├── bug1338 │ │ │ ├── .gitignore │ │ │ ├── bug1338.as │ │ │ └── bug1338.ref │ │ │ ├── bug1339 │ │ │ ├── .gitignore │ │ │ ├── bug1339.as │ │ │ └── bug1339.ref │ │ │ ├── bug626 │ │ │ ├── .gitignore │ │ │ ├── bug626.as │ │ │ └── bug626.ref │ │ │ ├── bug696 │ │ │ ├── .gitignore │ │ │ ├── bug696.as │ │ │ └── bug696.ref │ │ │ ├── bug702 │ │ │ ├── .gitignore │ │ │ ├── bug702.as │ │ │ └── bug702.ref │ │ │ ├── bug715 │ │ │ ├── .gitignore │ │ │ ├── bug715.as │ │ │ └── bug715.ref │ │ │ ├── bug778 │ │ │ ├── .gitignore │ │ │ ├── bug778.as │ │ │ └── bug778.ref │ │ │ ├── bug798 │ │ │ ├── .gitignore │ │ │ ├── bug798.as │ │ │ └── bug798.ref │ │ │ ├── bug814 │ │ │ ├── .gitignore │ │ │ ├── bug814.as │ │ │ └── bug814.ref │ │ │ ├── bug818 │ │ │ ├── .gitignore │ │ │ ├── bug818.as │ │ │ └── bug818.ref │ │ │ ├── bug821 │ │ │ ├── .gitignore │ │ │ ├── bug821.as │ │ │ └── bug821.ref │ │ │ ├── bug822 │ │ │ ├── .gitignore │ │ │ ├── bug822.as │ │ │ └── bug822.ref │ │ │ ├── bug823 │ │ │ ├── .gitignore │ │ │ ├── bug823.as │ │ │ └── bug823.ref │ │ │ ├── bug826 │ │ │ ├── .gitignore │ │ │ ├── bug826.as │ │ │ └── bug826.ref │ │ │ ├── bug835 │ │ │ ├── .gitignore │ │ │ ├── bug835.as │ │ │ └── bug835.ref │ │ │ ├── bug842 │ │ │ ├── .gitignore │ │ │ ├── bug842.as │ │ │ └── bug842.ref │ │ │ ├── bug848 │ │ │ ├── .gitignore │ │ │ ├── bug848.as │ │ │ └── bug848.ref │ │ │ ├── bug849 │ │ │ ├── .gitignore │ │ │ ├── bug849.as │ │ │ └── bug849.ref │ │ │ ├── bug852 │ │ │ ├── .gitignore │ │ │ └── bug852.as │ │ │ ├── bug867 │ │ │ ├── .gitignore │ │ │ ├── bug867.as │ │ │ └── bug867.ref │ │ │ ├── bug879 │ │ │ ├── .gitignore │ │ │ ├── bug879.as │ │ │ └── bug879.ref │ │ │ ├── bug885 │ │ │ ├── .gitignore │ │ │ ├── bug885.as │ │ │ └── bug885.ref │ │ │ ├── bug892 │ │ │ ├── .gitignore │ │ │ ├── bug892.as │ │ │ └── bug892.ref │ │ │ ├── bug897 │ │ │ ├── .gitignore │ │ │ ├── bug897.as │ │ │ └── bug897.ref │ │ │ ├── bug898 │ │ │ ├── .gitignore │ │ │ ├── bug898.as │ │ │ └── bug898.ref │ │ │ ├── bug901 │ │ │ ├── .gitignore │ │ │ ├── bug901.as │ │ │ └── bug901.ref │ │ │ ├── bug910 │ │ │ ├── .gitignore │ │ │ ├── bug910.as │ │ │ └── bug910.ref │ │ │ ├── bug911 │ │ │ ├── .gitignore │ │ │ ├── bug911.as │ │ │ └── bug911.ref │ │ │ ├── bug928 │ │ │ ├── .gitignore │ │ │ ├── bug928.as │ │ │ └── bug928.ref │ │ │ ├── bug932 │ │ │ ├── .gitignore │ │ │ ├── bug932.as │ │ │ └── bug932.ref │ │ │ ├── bug939 │ │ │ ├── .gitignore │ │ │ ├── bug939.as │ │ │ └── bug939.ref │ │ │ ├── bug940 │ │ │ ├── .gitignore │ │ │ ├── bug940.as │ │ │ └── bug940.ref │ │ │ ├── bug941 │ │ │ ├── .gitignore │ │ │ ├── bug941.as │ │ │ └── bug941.ref │ │ │ ├── bug944 │ │ │ ├── .gitignore │ │ │ ├── bug944.as │ │ │ └── bug944.ref │ │ │ ├── bug948 │ │ │ ├── .gitignore │ │ │ ├── bug948.as │ │ │ └── bug948.ref │ │ │ ├── bug954 │ │ │ ├── .gitignore │ │ │ └── bug954.as │ │ │ ├── bug954a │ │ │ ├── .gitignore │ │ │ ├── bug954a.as │ │ │ ├── bug954a.ref │ │ │ └── ralhex.as │ │ │ ├── bug954b │ │ │ ├── .gitignore │ │ │ ├── bug954b.as │ │ │ └── bug954b.ref │ │ │ ├── bug954c │ │ │ ├── .gitignore │ │ │ ├── bug954c.as │ │ │ └── bug954c.ref │ │ │ ├── bug954d │ │ │ ├── .gitignore │ │ │ ├── bug954d.as │ │ │ └── bug954d.ref │ │ │ ├── bug954e │ │ │ ├── .gitignore │ │ │ ├── bug954e.as │ │ │ └── bug954e.ref │ │ │ ├── bug954f │ │ │ ├── .gitignore │ │ │ ├── bug954f.as │ │ │ └── bug954f.ref │ │ │ ├── bug958 │ │ │ ├── .gitignore │ │ │ ├── bug958.as │ │ │ └── bug958.ref │ │ │ ├── bug965 │ │ │ ├── .gitignore │ │ │ ├── bug965.as │ │ │ └── bug965.ref │ │ │ ├── bug966 │ │ │ ├── .gitignore │ │ │ ├── bug966.as │ │ │ └── bug966.ref │ │ │ ├── bug969 │ │ │ ├── .gitignore │ │ │ ├── bug969.as │ │ │ └── bug969.ref │ │ │ ├── bug993 │ │ │ ├── .gitignore │ │ │ ├── bug993.as │ │ │ └── bug993.ref │ │ │ ├── bug994 │ │ │ ├── .gitignore │ │ │ ├── bug994.as │ │ │ └── bug994.ref │ │ │ ├── builtin0 │ │ │ ├── .gitignore │ │ │ ├── builtin0.as │ │ │ └── builtin0.ref │ │ │ ├── builtin1 │ │ │ ├── .gitignore │ │ │ ├── builtin1.as │ │ │ └── builtin1.ref │ │ │ ├── cascade0 │ │ │ ├── .gitignore │ │ │ ├── cascade0.as │ │ │ └── cascade0.ref │ │ │ ├── cascade1 │ │ │ ├── .gitignore │ │ │ ├── cascade1.as │ │ │ └── cascade1.ref │ │ │ ├── cascade2 │ │ │ ├── .gitignore │ │ │ ├── cascade2.as │ │ │ └── cascade2.ref │ │ │ ├── cascade3 │ │ │ ├── .gitignore │ │ │ ├── cascade3.as │ │ │ └── cascade3.ref │ │ │ ├── cascade4 │ │ │ ├── .gitignore │ │ │ ├── cascade4.as │ │ │ └── cascade4.ref │ │ │ ├── cascade5 │ │ │ ├── .gitignore │ │ │ └── cascade5.as │ │ │ ├── cascade6 │ │ │ ├── .gitignore │ │ │ └── cascade6.as │ │ │ ├── cascade7 │ │ │ ├── .gitignore │ │ │ └── cascade7.as │ │ │ ├── catdef0 │ │ │ ├── .gitignore │ │ │ ├── catdef0.as │ │ │ └── catdef0.ref │ │ │ ├── catdef1 │ │ │ ├── .gitignore │ │ │ ├── catdef1.as │ │ │ └── catdef1.ref │ │ │ ├── catdef3 │ │ │ ├── .gitignore │ │ │ ├── catdef3.as │ │ │ └── catdef3.ref │ │ │ ├── ccode-t.sh │ │ │ ├── closure0 │ │ │ ├── .gitignore │ │ │ ├── closure0.as │ │ │ └── closure0.ref │ │ │ ├── closure1 │ │ │ ├── .gitignore │ │ │ ├── closure1.as │ │ │ └── closure1.ref │ │ │ ├── cmdline0.sh │ │ │ ├── coerce │ │ │ ├── .gitignore │ │ │ └── coerce.as │ │ │ ├── coerce0 │ │ │ ├── .gitignore │ │ │ └── coerce0.as │ │ │ ├── collect0 │ │ │ ├── .gitignore │ │ │ ├── collect0.as │ │ │ └── collect0.ref │ │ │ ├── collect1 │ │ │ ├── .gitignore │ │ │ ├── collect1.as │ │ │ └── collect1.ref │ │ │ ├── complex │ │ │ ├── .gitignore │ │ │ └── complex.as │ │ │ ├── condapply1 │ │ │ ├── .gitignore │ │ │ ├── condapply1.as │ │ │ └── condapply1.ref │ │ │ ├── condapply2 │ │ │ ├── .gitignore │ │ │ ├── condapply2.as │ │ │ └── condapply2.ref │ │ │ ├── const0 │ │ │ ├── .gitignore │ │ │ ├── const0.as │ │ │ └── const0.ref │ │ │ ├── const1 │ │ │ ├── .gitignore │ │ │ ├── const1.as │ │ │ └── const1.ref │ │ │ ├── const2 │ │ │ ├── .gitignore │ │ │ ├── const2.as │ │ │ └── const2.ref │ │ │ ├── const3 │ │ │ ├── .gitignore │ │ │ ├── const3.as │ │ │ └── const3.ref │ │ │ ├── const4 │ │ │ ├── .gitignore │ │ │ ├── const4.as │ │ │ └── const4.ref │ │ │ ├── const5 │ │ │ ├── .gitignore │ │ │ ├── const5.as │ │ │ └── const5.ref │ │ │ ├── const6 │ │ │ ├── .gitignore │ │ │ └── const6.as │ │ │ ├── const7 │ │ │ ├── .gitignore │ │ │ └── const7.as │ │ │ ├── const8 │ │ │ ├── .gitignore │ │ │ └── const8.as │ │ │ ├── cport-t.sh │ │ │ ├── cpxadd.C │ │ │ ├── cycle0 │ │ │ ├── .gitignore │ │ │ ├── cycle0.as │ │ │ └── cycle0.ref │ │ │ ├── db │ │ │ ├── .gitignore │ │ │ ├── db.as │ │ │ └── db.ref │ │ │ ├── ddata │ │ │ ├── .gitignore │ │ │ ├── ddata.as │ │ │ └── ddata.ref │ │ │ ├── defarg0 │ │ │ ├── .gitignore │ │ │ ├── defarg0.as │ │ │ └── defarg0.ref │ │ │ ├── defarg1 │ │ │ ├── .gitignore │ │ │ ├── defarg1.as │ │ │ └── defarg1.ref │ │ │ ├── defarg10 │ │ │ ├── .gitignore │ │ │ ├── defarg10.as │ │ │ └── defarg10.ref │ │ │ ├── defarg2 │ │ │ ├── .gitignore │ │ │ ├── defarg2.as │ │ │ └── defarg2.ref │ │ │ ├── defarg3 │ │ │ ├── .gitignore │ │ │ └── defarg3.as │ │ │ ├── defarg4 │ │ │ ├── .gitignore │ │ │ ├── defarg4.as │ │ │ └── defarg4.ref │ │ │ ├── defarg5 │ │ │ ├── .gitignore │ │ │ └── defarg5.as │ │ │ ├── defarg6 │ │ │ ├── .gitignore │ │ │ ├── defarg6.as │ │ │ └── defarg6.ref │ │ │ ├── defarg7 │ │ │ ├── .gitignore │ │ │ ├── defarg7.as │ │ │ └── defarg7.ref │ │ │ ├── defarg8 │ │ │ ├── .gitignore │ │ │ ├── defarg8.as │ │ │ └── defarg8.ref │ │ │ ├── defarg9 │ │ │ ├── .gitignore │ │ │ ├── defarg9.as │ │ │ └── defarg9.ref │ │ │ ├── default0 │ │ │ ├── .gitignore │ │ │ ├── default0.as │ │ │ └── default0.ref │ │ │ ├── default1 │ │ │ ├── .gitignore │ │ │ ├── default1.as │ │ │ └── default1.ref │ │ │ ├── default2 │ │ │ ├── .gitignore │ │ │ ├── default2.as │ │ │ └── default2.ref │ │ │ ├── default3 │ │ │ ├── .gitignore │ │ │ ├── default3.as │ │ │ └── default3.ref │ │ │ ├── default4 │ │ │ ├── .gitignore │ │ │ ├── default4.as │ │ │ └── default4.ref │ │ │ ├── default5 │ │ │ ├── .gitignore │ │ │ ├── default5.as │ │ │ └── default5.ref │ │ │ ├── default6 │ │ │ ├── .gitignore │ │ │ ├── default6.as │ │ │ └── default6.ref │ │ │ ├── default7 │ │ │ ├── .gitignore │ │ │ ├── default7.as │ │ │ └── default7.ref │ │ │ ├── default8 │ │ │ ├── .gitignore │ │ │ ├── default8.as │ │ │ └── default8.ref │ │ │ ├── default9 │ │ │ ├── .gitignore │ │ │ ├── default9.as │ │ │ └── default9.ref │ │ │ ├── defgroup0 │ │ │ ├── .gitignore │ │ │ ├── defgroup0.as │ │ │ └── defgroup0.ref │ │ │ ├── defgroup1 │ │ │ ├── .gitignore │ │ │ ├── defgroup1.as │ │ │ └── defgroup1.ref │ │ │ ├── defgroup2 │ │ │ ├── .gitignore │ │ │ ├── defgroup2.as │ │ │ └── defgroup2.ref │ │ │ ├── defgroup3 │ │ │ ├── .gitignore │ │ │ ├── defgroup3.as │ │ │ └── defgroup3.ref │ │ │ ├── depend0 │ │ │ ├── .gitignore │ │ │ ├── depend0.as │ │ │ └── depend0.ref │ │ │ ├── depend1 │ │ │ ├── .gitignore │ │ │ ├── depend1.as │ │ │ └── depend1.ref │ │ │ ├── depend2 │ │ │ ├── .gitignore │ │ │ ├── depend2.as │ │ │ └── depend2.ref │ │ │ ├── depend3 │ │ │ ├── .gitignore │ │ │ ├── depend3.as │ │ │ └── depend3.ref │ │ │ ├── depend4 │ │ │ ├── .gitignore │ │ │ ├── depend4.as │ │ │ └── depend4.ref │ │ │ ├── depend5 │ │ │ ├── .gitignore │ │ │ ├── depend5.as │ │ │ └── depend5.ref │ │ │ ├── depend6 │ │ │ ├── .gitignore │ │ │ ├── depend6.as │ │ │ └── depend6.ref │ │ │ ├── depend7 │ │ │ ├── .gitignore │ │ │ ├── depend7.as │ │ │ └── depend7.ref │ │ │ ├── depend8 │ │ │ ├── .gitignore │ │ │ ├── depend8.as │ │ │ └── depend8.ref │ │ │ ├── depend9 │ │ │ ├── .gitignore │ │ │ ├── depend9.as │ │ │ └── depend9.ref │ │ │ ├── df1 │ │ │ ├── .gitignore │ │ │ ├── df1.as │ │ │ └── df1.ref │ │ │ ├── dnames │ │ │ ├── .gitignore │ │ │ ├── dnames.as │ │ │ └── dnames.ref │ │ │ ├── dnf-t.sh │ │ │ ├── doc0 │ │ │ ├── .gitignore │ │ │ ├── doc0.as │ │ │ └── doc0.ref │ │ │ ├── domain0 │ │ │ ├── .gitignore │ │ │ ├── domain0.as │ │ │ └── domain0.ref │ │ │ ├── domain1 │ │ │ ├── .gitignore │ │ │ ├── domain1.as │ │ │ └── domain1.ref │ │ │ ├── domain2 │ │ │ ├── .gitignore │ │ │ ├── domain2.as │ │ │ └── domain2.ref │ │ │ ├── domain3 │ │ │ ├── .gitignore │ │ │ ├── domain3.as │ │ │ └── domain3.ref │ │ │ ├── eager0.sh │ │ │ ├── embed │ │ │ ├── .gitignore │ │ │ ├── embed.as │ │ │ └── embed.ref │ │ │ ├── embed1 │ │ │ ├── .gitignore │ │ │ ├── embed1.as │ │ │ └── embed1.ref │ │ │ ├── emerge0 │ │ │ ├── .gitignore │ │ │ ├── emerge0.as │ │ │ └── emerge0.ref │ │ │ ├── emit0.sh │ │ │ ├── emit1.sh │ │ │ ├── enum0 │ │ │ ├── .gitignore │ │ │ ├── enum0.as │ │ │ └── enum0.ref │ │ │ ├── enum1 │ │ │ ├── .gitignore │ │ │ ├── enum1.as │ │ │ └── enum1.ref │ │ │ ├── error0 │ │ │ ├── .gitignore │ │ │ └── error0.as │ │ │ ├── error1 │ │ │ ├── .gitignore │ │ │ └── error1.as │ │ │ ├── errorax.sh │ │ │ ├── exit0 │ │ │ ├── .gitignore │ │ │ ├── exit0.as │ │ │ └── exit0.ref │ │ │ ├── exit1 │ │ │ ├── .gitignore │ │ │ └── exit1.as │ │ │ ├── exit2 │ │ │ ├── .gitignore │ │ │ ├── exit2.as │ │ │ └── exit2.ref │ │ │ ├── exn1 │ │ │ ├── .gitignore │ │ │ ├── exn1.as │ │ │ └── exn1.ref │ │ │ ├── exn2 │ │ │ ├── .gitignore │ │ │ ├── exn2.as │ │ │ └── exn2.ref │ │ │ ├── exn3 │ │ │ ├── .gitignore │ │ │ ├── exn3.as │ │ │ └── exn3.ref │ │ │ ├── exn4 │ │ │ ├── .gitignore │ │ │ └── exn4.as │ │ │ ├── exn5 │ │ │ ├── .gitignore │ │ │ └── exn5.as │ │ │ ├── exn6 │ │ │ ├── .gitignore │ │ │ └── exn6.as │ │ │ ├── expfact.c │ │ │ ├── export1 │ │ │ ├── .gitignore │ │ │ ├── export1.as │ │ │ └── export1.ref │ │ │ ├── export2 │ │ │ ├── .gitignore │ │ │ ├── export2.as │ │ │ └── export2.ref │ │ │ ├── export3 │ │ │ ├── .gitignore │ │ │ ├── export3.as │ │ │ └── export3.ref │ │ │ ├── expquo.c │ │ │ ├── exptoc.sh │ │ │ ├── exptoc │ │ │ ├── .gitignore │ │ │ └── exptoc.as │ │ │ ├── exptoc2.sh │ │ │ ├── exptoc2 │ │ │ ├── .gitignore │ │ │ └── exptoc2.as │ │ │ ├── extend0 │ │ │ ├── .gitignore │ │ │ ├── extend0.as │ │ │ └── extend0.ref │ │ │ ├── extend1 │ │ │ ├── .gitignore │ │ │ ├── extend1.as │ │ │ └── extend1.ref │ │ │ ├── extend2 │ │ │ ├── .gitignore │ │ │ └── extend2.as │ │ │ ├── f11 │ │ │ ├── .gitignore │ │ │ ├── f11.as │ │ │ └── f11.ref │ │ │ ├── fact │ │ │ ├── .gitignore │ │ │ ├── fact.as │ │ │ └── fact.ref │ │ │ ├── file-t.sh │ │ │ ├── fix0 │ │ │ ├── .gitignore │ │ │ ├── fix0.as │ │ │ └── fix0.ref │ │ │ ├── fix1 │ │ │ ├── .gitignore │ │ │ ├── fix1.as │ │ │ └── fix1.ref │ │ │ ├── float-t.sh │ │ │ ├── float0 │ │ │ ├── .gitignore │ │ │ ├── float0.as │ │ │ └── float0.ref │ │ │ ├── float1 │ │ │ ├── .gitignore │ │ │ ├── float1.as │ │ │ └── float1.ref │ │ │ ├── float2 │ │ │ ├── .gitignore │ │ │ └── float2.as │ │ │ ├── float3 │ │ │ ├── .gitignore │ │ │ ├── float3.as │ │ │ └── float3.ref │ │ │ ├── float4 │ │ │ ├── .gitignore │ │ │ ├── float4.as │ │ │ └── float4.ref │ │ │ ├── flow0 │ │ │ ├── .gitignore │ │ │ ├── flow0.as │ │ │ └── flow0.ref │ │ │ ├── fluid-t.sh │ │ │ ├── fluid0 │ │ │ ├── .gitignore │ │ │ ├── fluid0.as │ │ │ └── fluid0.ref │ │ │ ├── fname-t.sh │ │ │ ├── fopt-ai.sh │ │ │ ├── fopt-ax.sh │ │ │ ├── fopt-fm.sh │ │ │ ├── fopt-mc.sh │ │ │ ├── fopt.sh │ │ │ ├── for0 │ │ │ ├── .gitignore │ │ │ ├── for0.as │ │ │ └── for0.ref │ │ │ ├── format-t.sh │ │ │ ├── format1 │ │ │ ├── .gitignore │ │ │ ├── format1.as │ │ │ └── format1.ref │ │ │ ├── format2 │ │ │ ├── .gitignore │ │ │ ├── format2.as │ │ │ └── format2.ref │ │ │ ├── forn0 │ │ │ ├── .gitignore │ │ │ ├── forn0.as │ │ │ └── forn0.ref │ │ │ ├── forn1 │ │ │ ├── .gitignore │ │ │ ├── forn1.as │ │ │ └── forn1.ref │ │ │ ├── forn10.sh │ │ │ ├── forn2 │ │ │ ├── .gitignore │ │ │ └── forn2.as │ │ │ ├── forn3 │ │ │ ├── .gitignore │ │ │ └── forn3.as │ │ │ ├── forn4 │ │ │ ├── .gitignore │ │ │ └── forn4.as │ │ │ ├── forn5 │ │ │ ├── .gitignore │ │ │ └── forn5.as │ │ │ ├── forn5_c.c │ │ │ ├── forn5o │ │ │ ├── .gitignore │ │ │ └── forn5o.as │ │ │ ├── forn6 │ │ │ ├── .gitignore │ │ │ └── forn6.as │ │ │ ├── forn6o │ │ │ ├── .gitignore │ │ │ └── forn6o.as │ │ │ ├── forn7 │ │ │ ├── .gitignore │ │ │ └── forn7.as │ │ │ ├── forn7a │ │ │ ├── .gitignore │ │ │ └── forn7a.as │ │ │ ├── forn8.sh │ │ │ ├── forn8 │ │ │ ├── .gitignore │ │ │ ├── forn8.as │ │ │ └── forn8.ref │ │ │ ├── forn9.sh │ │ │ ├── funct1 │ │ │ ├── .gitignore │ │ │ ├── funct1.as │ │ │ └── funct1.ref │ │ │ ├── funct2 │ │ │ ├── .gitignore │ │ │ ├── funct2.as │ │ │ └── funct2.ref │ │ │ ├── funct3 │ │ │ ├── .gitignore │ │ │ └── funct3.as │ │ │ ├── funct4 │ │ │ ├── .gitignore │ │ │ └── funct4.as │ │ │ ├── funct5 │ │ │ ├── .gitignore │ │ │ └── funct5.as │ │ │ ├── funct6 │ │ │ ├── .gitignore │ │ │ └── funct6.as │ │ │ ├── funct7 │ │ │ ├── .gitignore │ │ │ ├── funct7.as │ │ │ └── funct7.ref │ │ │ ├── funct8 │ │ │ ├── .gitignore │ │ │ └── funct8.as │ │ │ ├── funlist1 │ │ │ ├── .gitignore │ │ │ ├── funlist1.as │ │ │ └── funlist1.ref │ │ │ ├── funvar │ │ │ ├── .gitignore │ │ │ ├── funvar.as │ │ │ └── funvar.ref │ │ │ ├── gc0 │ │ │ ├── .gitignore │ │ │ ├── gc0.as │ │ │ └── gc0.ref │ │ │ ├── gen0 │ │ │ ├── .gitignore │ │ │ └── gen0.as │ │ │ ├── gen1 │ │ │ ├── .gitignore │ │ │ └── gen1.as │ │ │ ├── gen2 │ │ │ ├── .gitignore │ │ │ └── gen2.as │ │ │ ├── gen3 │ │ │ ├── .gitignore │ │ │ └── gen3.as │ │ │ ├── gen4 │ │ │ ├── .gitignore │ │ │ └── gen4.as │ │ │ ├── genc0.sh │ │ │ ├── genc1 │ │ │ ├── .gitignore │ │ │ └── genc1.as │ │ │ ├── genc2 │ │ │ ├── .gitignore │ │ │ └── genc2.as │ │ │ ├── genops │ │ │ ├── .gitignore │ │ │ ├── genops.as │ │ │ └── genops.ref │ │ │ ├── gfGener1 │ │ │ ├── .gitignore │ │ │ ├── gfGener1.as │ │ │ └── gfGener1.ref │ │ │ ├── gfGener2 │ │ │ ├── .gitignore │ │ │ ├── gfGener2.as │ │ │ └── gfGener2.ref │ │ │ ├── goto0 │ │ │ ├── .gitignore │ │ │ ├── goto0.as │ │ │ └── goto0.ref │ │ │ ├── grok │ │ │ ├── .gitignore │ │ │ ├── grok.as │ │ │ └── grok.ref │ │ │ ├── halt1 │ │ │ ├── .gitignore │ │ │ ├── halt1.as │ │ │ └── halt1.ref │ │ │ ├── has1 │ │ │ ├── .gitignore │ │ │ ├── has1.as │ │ │ └── has1.ref │ │ │ ├── has2 │ │ │ ├── .gitignore │ │ │ ├── has2.as │ │ │ └── has2.ref │ │ │ ├── hash0 │ │ │ ├── .gitignore │ │ │ ├── hash0.as │ │ │ └── hash0.ref │ │ │ ├── hide0 │ │ │ ├── .gitignore │ │ │ ├── hide0.as │ │ │ └── hide0.ref │ │ │ ├── hilbert │ │ │ ├── .gitignore │ │ │ ├── hilbert.as │ │ │ └── hilbert.ref │ │ │ ├── if0 │ │ │ ├── .gitignore │ │ │ ├── if0.as │ │ │ └── if0.ref │ │ │ ├── if1 │ │ │ ├── .gitignore │ │ │ └── if1.as │ │ │ ├── if2 │ │ │ ├── .gitignore │ │ │ ├── if2.as │ │ │ └── if2.ref │ │ │ ├── if3 │ │ │ ├── .gitignore │ │ │ └── if3.as │ │ │ ├── if4 │ │ │ ├── .gitignore │ │ │ ├── if4.as │ │ │ └── if4.ref │ │ │ ├── if5 │ │ │ ├── .gitignore │ │ │ ├── if5.as │ │ │ └── if5.ref │ │ │ ├── ifcross0 │ │ │ ├── .gitignore │ │ │ ├── ifcross0.as │ │ │ └── ifcross0.ref │ │ │ ├── imod0 │ │ │ ├── .gitignore │ │ │ ├── imod0.as │ │ │ └── imod0.ref │ │ │ ├── impl │ │ │ ├── .gitignore │ │ │ ├── impl.as │ │ │ └── impl.ref │ │ │ ├── incl │ │ │ ├── .gitignore │ │ │ ├── Z │ │ │ │ └── includeZ.as │ │ │ ├── include0.as │ │ │ ├── includeA.as │ │ │ ├── includeB.as │ │ │ └── includeC.as │ │ │ ├── include0 │ │ │ ├── .gitignore │ │ │ └── include0.as │ │ │ ├── include1 │ │ │ ├── .gitignore │ │ │ └── include1.as │ │ │ ├── include2 │ │ │ ├── .gitignore │ │ │ └── include2.as │ │ │ ├── include3 │ │ │ ├── .gitignore │ │ │ └── include3.as │ │ │ ├── inline0 │ │ │ ├── .gitignore │ │ │ ├── inline0.as │ │ │ └── inline0.ref │ │ │ ├── inline1 │ │ │ ├── .gitignore │ │ │ ├── inline1.as │ │ │ └── inline1.ref │ │ │ ├── inline2 │ │ │ ├── .gitignore │ │ │ ├── inline2.as │ │ │ └── inline2.ref │ │ │ ├── inline3 │ │ │ ├── .gitignore │ │ │ ├── inline3.as │ │ │ └── inline3.ref │ │ │ ├── inline4 │ │ │ ├── .gitignore │ │ │ ├── inline4.as │ │ │ └── inline4.ref │ │ │ ├── inline5 │ │ │ ├── .gitignore │ │ │ ├── inline5.as │ │ │ └── inline5.ref │ │ │ ├── intbug1 │ │ │ ├── .gitignore │ │ │ ├── intbug1.as │ │ │ └── intbug1.ref │ │ │ ├── intcat.sh │ │ │ ├── interact.sh │ │ │ ├── junk0 │ │ │ ├── .gitignore │ │ │ └── junk0.as │ │ │ ├── ladder0 │ │ │ ├── .gitignore │ │ │ ├── ladder0.as │ │ │ └── ladder0.ref │ │ │ ├── libdup0 │ │ │ ├── .gitignore │ │ │ ├── libdup0.as │ │ │ └── libdup0.ref │ │ │ ├── libdup1 │ │ │ ├── .gitignore │ │ │ ├── libdup1.as │ │ │ └── libdup1.ref │ │ │ ├── limits │ │ │ ├── .gitignore │ │ │ ├── limits.as │ │ │ └── limits.ref │ │ │ ├── linear0 │ │ │ ├── .gitignore │ │ │ └── linear0.as │ │ │ ├── linear1 │ │ │ ├── .gitignore │ │ │ └── linear1.as │ │ │ ├── linear2 │ │ │ ├── .gitignore │ │ │ └── linear2.as │ │ │ ├── linear3 │ │ │ ├── .gitignore │ │ │ └── linear3.as │ │ │ ├── linear4 │ │ │ ├── .gitignore │ │ │ └── linear4.as │ │ │ ├── link-t.sh │ │ │ ├── list-t.sh │ │ │ ├── lit0 │ │ │ ├── .gitignore │ │ │ ├── lit0.as │ │ │ └── lit0.ref │ │ │ ├── lit1 │ │ │ ├── .gitignore │ │ │ ├── lit1.as │ │ │ └── lit1.ref │ │ │ ├── loop0 │ │ │ ├── .gitignore │ │ │ ├── loop0.as │ │ │ └── loop0.ref │ │ │ ├── loop1 │ │ │ ├── .gitignore │ │ │ ├── loop1.as │ │ │ └── loop1.ref │ │ │ ├── loop2 │ │ │ ├── .gitignore │ │ │ ├── loop2.as │ │ │ └── loop2.ref │ │ │ ├── loop3 │ │ │ ├── .gitignore │ │ │ ├── loop3.as │ │ │ └── loop3.ref │ │ │ ├── macex0 │ │ │ ├── .gitignore │ │ │ └── macex0.as │ │ │ ├── macex1 │ │ │ ├── .gitignore │ │ │ ├── macex1.as │ │ │ └── macex1.ref │ │ │ ├── macex2 │ │ │ ├── .gitignore │ │ │ └── macex2.as │ │ │ ├── macex3 │ │ │ ├── .gitignore │ │ │ └── macex3.as │ │ │ ├── macex4 │ │ │ ├── .gitignore │ │ │ └── macex4.as │ │ │ ├── macex5 │ │ │ ├── .gitignore │ │ │ └── macex5.as │ │ │ ├── macex6 │ │ │ ├── .gitignore │ │ │ └── macex6.as │ │ │ ├── macex7 │ │ │ ├── .gitignore │ │ │ └── macex7.as │ │ │ ├── mandel │ │ │ ├── .gitignore │ │ │ ├── mandel.as │ │ │ └── mandel.ref │ │ │ ├── mandel_c.c │ │ │ ├── mandel_t │ │ │ ├── .gitignore │ │ │ ├── mandel_t.as │ │ │ └── mandel_t.ref │ │ │ ├── missing0 │ │ │ ├── .gitignore │ │ │ └── missing0.as │ │ │ ├── missing1 │ │ │ ├── .gitignore │ │ │ ├── missing1.as │ │ │ └── missing1.ref │ │ │ ├── msg-t.sh │ │ │ ├── msg.sh │ │ │ ├── multi.sh │ │ │ ├── mylist │ │ │ ├── .gitignore │ │ │ ├── appli1.C │ │ │ ├── appli2.C │ │ │ ├── mylist.as │ │ │ └── mylist.ref │ │ │ ├── nmake.diff │ │ │ ├── none0 │ │ │ ├── .gitignore │ │ │ ├── none0.as │ │ │ └── none0.ref │ │ │ ├── none1 │ │ │ ├── .gitignore │ │ │ ├── none1.as │ │ │ └── none1.ref │ │ │ ├── none2 │ │ │ ├── .gitignore │ │ │ ├── none2.as │ │ │ └── none2.ref │ │ │ ├── numeral0 │ │ │ ├── .gitignore │ │ │ ├── numeral0.as │ │ │ └── numeral0.ref │ │ │ ├── numeral1 │ │ │ ├── .gitignore │ │ │ ├── numeral1.as │ │ │ └── numeral1.ref │ │ │ ├── numeral2 │ │ │ ├── .gitignore │ │ │ ├── numeral2.as │ │ │ └── numeral2.ref │ │ │ ├── object0 │ │ │ ├── .gitignore │ │ │ ├── object0.as │ │ │ └── object0.ref │ │ │ ├── object1 │ │ │ ├── .gitignore │ │ │ ├── object1.as │ │ │ └── object1.ref │ │ │ ├── opsys-t.sh │ │ │ ├── opt0 │ │ │ ├── .gitignore │ │ │ ├── opt0.as │ │ │ └── opt0.ref │ │ │ ├── opt1 │ │ │ ├── .gitignore │ │ │ ├── opt1.as │ │ │ └── opt1.ref │ │ │ ├── opt2 │ │ │ ├── .gitignore │ │ │ ├── opt2.as │ │ │ └── opt2.ref │ │ │ ├── opt3 │ │ │ ├── .gitignore │ │ │ ├── opt3.as │ │ │ └── opt3.ref │ │ │ ├── oslowtst │ │ │ ├── .gitignore │ │ │ ├── oslowtst.as │ │ │ └── oslowtst.ref │ │ │ ├── ovload0 │ │ │ ├── .gitignore │ │ │ ├── ovload0.as │ │ │ └── ovload0.ref │ │ │ ├── ovload1 │ │ │ ├── .gitignore │ │ │ ├── ovload1.as │ │ │ └── ovload1.ref │ │ │ ├── ovload2 │ │ │ ├── .gitignore │ │ │ ├── ovload2.as │ │ │ └── ovload2.ref │ │ │ ├── pack0.sh │ │ │ ├── pack0 │ │ │ ├── .gitignore │ │ │ ├── pack0.as │ │ │ ├── pack0.ref │ │ │ └── packfns.c │ │ │ ├── pack1 │ │ │ ├── .gitignore │ │ │ ├── pack1.as │ │ │ ├── pack1.ref │ │ │ └── packdefs.as │ │ │ ├── pack2 │ │ │ ├── .gitignore │ │ │ ├── pack2.as │ │ │ └── pack2.ref │ │ │ ├── pack3 │ │ │ ├── .gitignore │ │ │ ├── pack3.as │ │ │ └── pack3.ref │ │ │ ├── parse0 │ │ │ ├── .gitignore │ │ │ ├── parse0.as │ │ │ └── parse0.ref │ │ │ ├── parse1 │ │ │ ├── .gitignore │ │ │ └── parse1.as │ │ │ ├── parse2 │ │ │ ├── .gitignore │ │ │ └── parse2.as │ │ │ ├── parse3 │ │ │ ├── .gitignore │ │ │ └── parse3.as │ │ │ ├── parse4 │ │ │ ├── .gitignore │ │ │ └── parse4.as │ │ │ ├── pretend1 │ │ │ ├── .gitignore │ │ │ ├── pretend1.as │ │ │ └── pretend1.ref │ │ │ ├── print │ │ │ ├── .gitignore │ │ │ └── print.as │ │ │ ├── priq-t.sh │ │ │ ├── qimport │ │ │ ├── .gitignore │ │ │ ├── qimport.as │ │ │ └── qimport.ref │ │ │ ├── qual0 │ │ │ ├── .gitignore │ │ │ ├── qual0.as │ │ │ └── qual0.ref │ │ │ ├── qual1 │ │ │ ├── .gitignore │ │ │ ├── qual1.as │ │ │ └── qual1.ref │ │ │ ├── qual2 │ │ │ ├── .gitignore │ │ │ ├── qual2.as │ │ │ └── qual2.ref │ │ │ ├── ratio0 │ │ │ ├── .gitignore │ │ │ ├── ratio0.as │ │ │ └── ratio0.ref │ │ │ ├── rawcomplex │ │ │ ├── .gitignore │ │ │ └── rawcomplex.as │ │ │ ├── rawrec1 │ │ │ ├── .gitignore │ │ │ ├── rawrec1.as │ │ │ └── rawrec1.ref │ │ │ ├── rawrec2 │ │ │ ├── .gitignore │ │ │ ├── rawrec2.as │ │ │ └── rawrec2.ref │ │ │ ├── rawrec3 │ │ │ ├── .gitignore │ │ │ ├── rawrec3.as │ │ │ └── rawrec3.ref │ │ │ ├── rawrec4 │ │ │ ├── .gitignore │ │ │ ├── rawrec4.as │ │ │ └── rawrec4.ref │ │ │ ├── rawrec5.sh │ │ │ ├── rawrec5 │ │ │ ├── .gitignore │ │ │ └── rawrec5.as │ │ │ ├── reclist0 │ │ │ ├── .gitignore │ │ │ └── reclist0.as │ │ │ ├── reclist1 │ │ │ ├── .gitignore │ │ │ ├── reclist1.as │ │ │ └── reclist1.ref │ │ │ ├── record │ │ │ ├── .gitignore │ │ │ ├── record.as │ │ │ └── record.ref │ │ │ ├── record0 │ │ │ ├── .gitignore │ │ │ ├── record0.as │ │ │ └── record0.ref │ │ │ ├── record1 │ │ │ ├── .gitignore │ │ │ ├── record1.as │ │ │ └── record1.ref │ │ │ ├── record2 │ │ │ ├── .gitignore │ │ │ ├── record2.as │ │ │ └── record2.ref │ │ │ ├── recov1.sh │ │ │ ├── ref0 │ │ │ ├── .gitignore │ │ │ └── ref0.as │ │ │ ├── respfile.sh │ │ │ ├── scan0 │ │ │ ├── .gitignore │ │ │ └── scan0.as │ │ │ ├── scan1 │ │ │ ├── .gitignore │ │ │ └── scan1.as │ │ │ ├── scan2 │ │ │ ├── .gitignore │ │ │ └── scan2.as │ │ │ ├── scan3 │ │ │ ├── .gitignore │ │ │ └── scan3.as │ │ │ ├── scan4 │ │ │ ├── .gitignore │ │ │ └── scan4.as │ │ │ ├── scan5 │ │ │ ├── .gitignore │ │ │ ├── scan5.as │ │ │ └── scan5.ref │ │ │ ├── scan6 │ │ │ ├── .gitignore │ │ │ ├── scan6.as │ │ │ └── scan6.ref │ │ │ ├── scobind0 │ │ │ ├── .gitignore │ │ │ ├── scobind0.as │ │ │ └── scobind0.ref │ │ │ ├── scobind1 │ │ │ ├── .gitignore │ │ │ └── scobind1.as │ │ │ ├── scobind2 │ │ │ ├── .gitignore │ │ │ ├── scobind2.as │ │ │ └── scobind2.ref │ │ │ ├── scobind3 │ │ │ ├── .gitignore │ │ │ └── scobind3.as │ │ │ ├── scobind4 │ │ │ ├── .gitignore │ │ │ ├── scobind4.as │ │ │ └── scobind4.ref │ │ │ ├── scobind5 │ │ │ ├── .gitignore │ │ │ └── scobind5.as │ │ │ ├── scobind6 │ │ │ ├── .gitignore │ │ │ ├── scobind6.as │ │ │ └── scobind6.ref │ │ │ ├── scobind7 │ │ │ ├── .gitignore │ │ │ └── scobind7.as │ │ │ ├── scope0 │ │ │ ├── .gitignore │ │ │ ├── scope0.as │ │ │ └── scope0.ref │ │ │ ├── scope1 │ │ │ ├── .gitignore │ │ │ ├── scope1.as │ │ │ └── scope1.ref │ │ │ ├── scope10 │ │ │ ├── .gitignore │ │ │ ├── scope10.as │ │ │ └── scope10.ref │ │ │ ├── scope11 │ │ │ ├── .gitignore │ │ │ ├── scope11.as │ │ │ └── scope11.ref │ │ │ ├── scope12 │ │ │ ├── .gitignore │ │ │ └── scope12.as │ │ │ ├── scope2 │ │ │ ├── .gitignore │ │ │ ├── scope2.as │ │ │ └── scope2.ref │ │ │ ├── scope3 │ │ │ ├── .gitignore │ │ │ ├── scope3.as │ │ │ └── scope3.ref │ │ │ ├── scope5 │ │ │ ├── .gitignore │ │ │ └── scope5.as │ │ │ ├── scope7 │ │ │ ├── .gitignore │ │ │ ├── scope7.as │ │ │ └── scope7.ref │ │ │ ├── scope8 │ │ │ ├── .gitignore │ │ │ ├── scope8.as │ │ │ └── scope8.ref │ │ │ ├── scope9 │ │ │ ├── .gitignore │ │ │ ├── scope9.as │ │ │ └── scope9.ref │ │ │ ├── segext0.sh │ │ │ ├── segext0 │ │ │ ├── .gitignore │ │ │ └── segext0.as │ │ │ ├── segext1.sh │ │ │ ├── segext1 │ │ │ ├── .gitignore │ │ │ └── segext1.as │ │ │ ├── segext2 │ │ │ ├── .gitignore │ │ │ └── segext2.as │ │ │ ├── segext3 │ │ │ ├── .gitignore │ │ │ └── segext3.as │ │ │ ├── segext4 │ │ │ ├── .gitignore │ │ │ └── segext4.as │ │ │ ├── segment0 │ │ │ ├── .gitignore │ │ │ ├── segment0.as │ │ │ └── segment0.ref │ │ │ ├── select0 │ │ │ ├── .gitignore │ │ │ ├── select0.as │ │ │ └── select0.ref │ │ │ ├── select1 │ │ │ ├── .gitignore │ │ │ ├── select1.as │ │ │ └── select1.ref │ │ │ ├── select2 │ │ │ ├── .gitignore │ │ │ ├── select2.as │ │ │ └── select2.ref │ │ │ ├── select3.sh │ │ │ ├── self0 │ │ │ ├── .gitignore │ │ │ ├── self0.as │ │ │ └── self0.ref │ │ │ ├── session1.sh │ │ │ ├── session2.sh │ │ │ ├── session3.sh │ │ │ ├── session4.sh │ │ │ ├── session5.sh │ │ │ ├── session6.sh │ │ │ ├── setBANG │ │ │ ├── .gitignore │ │ │ ├── setBANG.as │ │ │ └── setBANG.ref │ │ │ ├── show-t.sh │ │ │ ├── sieve.c │ │ │ ├── slist │ │ │ ├── .gitignore │ │ │ ├── slist.as │ │ │ └── slist.ref │ │ │ ├── srcpos │ │ │ ├── .gitignore │ │ │ └── srcpos.as │ │ │ ├── stor1a-t.sh │ │ │ ├── stor1b-t.sh │ │ │ ├── stor1c-t.sh │ │ │ ├── stor1d-t.sh │ │ │ ├── store2-t.sh │ │ │ ├── store3-t.sh │ │ │ ├── string-t.sh │ │ │ ├── string_t │ │ │ ├── .gitignore │ │ │ ├── string_t.as │ │ │ └── string_t.ref │ │ │ ├── supcat.sh │ │ │ ├── supcat0 │ │ │ ├── .gitignore │ │ │ └── supcat0.as │ │ │ ├── supcat1 │ │ │ ├── .gitignore │ │ │ └── supcat1.as │ │ │ ├── swap │ │ │ ├── .gitignore │ │ │ ├── swap.as │ │ │ └── swap.ref │ │ │ ├── swap1 │ │ │ ├── .gitignore │ │ │ ├── swap1.as │ │ │ └── swap1.ref │ │ │ ├── symbol-t.sh │ │ │ ├── t1009 │ │ │ ├── .gitignore │ │ │ ├── t1009.as │ │ │ └── t1009.ref │ │ │ ├── t1024 │ │ │ ├── .gitignore │ │ │ ├── t1024.as │ │ │ └── t1024.ref │ │ │ ├── t1025 │ │ │ ├── .gitignore │ │ │ ├── t1025.as │ │ │ └── t1025.ref │ │ │ ├── t1028 │ │ │ ├── .gitignore │ │ │ ├── t1028.as │ │ │ └── t1028.ref │ │ │ ├── t1029 │ │ │ ├── .gitignore │ │ │ ├── t1029.as │ │ │ └── t1029.ref │ │ │ ├── t1053 │ │ │ ├── .gitignore │ │ │ ├── t1053.as │ │ │ └── t1053.ref │ │ │ ├── t1059 │ │ │ ├── .gitignore │ │ │ ├── t1059.as │ │ │ └── t1059.ref │ │ │ ├── t1064 │ │ │ ├── .gitignore │ │ │ ├── t1064.as │ │ │ └── t1064.ref │ │ │ ├── t1070.sh │ │ │ ├── t1070a │ │ │ ├── .gitignore │ │ │ ├── t1070a.as │ │ │ └── t1070a.ref │ │ │ ├── t1070b │ │ │ ├── .gitignore │ │ │ └── t1070b.as │ │ │ ├── t1075.sh │ │ │ ├── t1075a │ │ │ ├── .gitignore │ │ │ ├── t1075a.as │ │ │ └── t1075a.ref │ │ │ ├── t1075b │ │ │ ├── .gitignore │ │ │ ├── t1075b.as │ │ │ └── t1075b.ref │ │ │ ├── t1075c │ │ │ ├── .gitignore │ │ │ └── t1075c.as │ │ │ ├── t1085 │ │ │ ├── .gitignore │ │ │ ├── t1085.as │ │ │ └── t1085.ref │ │ │ ├── t1088 │ │ │ ├── .gitignore │ │ │ ├── t1088.as │ │ │ └── t1088.ref │ │ │ ├── t1093 │ │ │ ├── .gitignore │ │ │ ├── t1093.as │ │ │ └── t1093.ref │ │ │ ├── t1094 │ │ │ ├── .gitignore │ │ │ └── t1094.as │ │ │ ├── t1097 │ │ │ ├── .gitignore │ │ │ └── t1097.as │ │ │ ├── t1099 │ │ │ ├── .gitignore │ │ │ ├── t1099.as │ │ │ └── t1099.ref │ │ │ ├── t1105 │ │ │ ├── .gitignore │ │ │ ├── t1105.as │ │ │ └── t1105.ref │ │ │ ├── t1106 │ │ │ ├── .gitignore │ │ │ ├── t1106.as │ │ │ └── t1106.ref │ │ │ ├── t1107.sh │ │ │ ├── t1107a │ │ │ ├── .gitignore │ │ │ ├── t1107a.as │ │ │ └── t1107a.ref │ │ │ ├── t1107b │ │ │ ├── .gitignore │ │ │ └── t1107b.as │ │ │ ├── t1125 │ │ │ ├── .gitignore │ │ │ └── t1125.as │ │ │ ├── t1142 │ │ │ ├── .gitignore │ │ │ └── t1142.as │ │ │ ├── t1145 │ │ │ ├── .gitignore │ │ │ ├── t1145.as │ │ │ └── t1145.ref │ │ │ ├── t1149 │ │ │ ├── .gitignore │ │ │ ├── t1149.as │ │ │ └── t1149.ref │ │ │ ├── t1157.sh │ │ │ ├── t1157m │ │ │ ├── .gitignore │ │ │ ├── t1157m.as │ │ │ └── t1157m.ref │ │ │ ├── t1157s │ │ │ ├── .gitignore │ │ │ ├── t1157s.as │ │ │ └── t1157s.ref │ │ │ ├── t1158 │ │ │ ├── .gitignore │ │ │ └── t1158.as │ │ │ ├── t1166 │ │ │ ├── .gitignore │ │ │ ├── t1166.as │ │ │ └── t1166.ref │ │ │ ├── t672 │ │ │ ├── .gitignore │ │ │ └── t672.as │ │ │ ├── t715 │ │ │ ├── .gitignore │ │ │ ├── t715.as │ │ │ └── t715.ref │ │ │ ├── t897 │ │ │ ├── .gitignore │ │ │ ├── t897.as │ │ │ └── t897.ref │ │ │ ├── t934 │ │ │ ├── .gitignore │ │ │ └── t934.as │ │ │ ├── t936 │ │ │ ├── .gitignore │ │ │ └── t936.as │ │ │ ├── t944 │ │ │ ├── .gitignore │ │ │ ├── t944.as │ │ │ └── t944.ref │ │ │ ├── t947 │ │ │ ├── .gitignore │ │ │ └── t947.as │ │ │ ├── t950 │ │ │ ├── .gitignore │ │ │ ├── t950.as │ │ │ └── t950.ref │ │ │ ├── t958 │ │ │ ├── .gitignore │ │ │ ├── t958.as │ │ │ └── t958.ref │ │ │ ├── t966 │ │ │ ├── .gitignore │ │ │ ├── t966.as │ │ │ └── t966.ref │ │ │ ├── t967 │ │ │ ├── .gitignore │ │ │ └── t967.as │ │ │ ├── t973 │ │ │ ├── .gitignore │ │ │ ├── t973.as │ │ │ └── t973.ref │ │ │ ├── t986 │ │ │ ├── .gitignore │ │ │ ├── t986.as │ │ │ └── t986.ref │ │ │ ├── table-t.sh │ │ │ ├── table1 │ │ │ ├── .gitignore │ │ │ ├── table1.as │ │ │ └── table1.ref │ │ │ ├── test0 │ │ │ ├── .gitignore │ │ │ ├── test0.as │ │ │ └── test0.ref │ │ │ ├── test1 │ │ │ ├── .gitignore │ │ │ ├── test1.as │ │ │ └── test1.ref │ │ │ ├── tinfer0 │ │ │ ├── .gitignore │ │ │ ├── tinfer0.as │ │ │ └── tinfer0.ref │ │ │ ├── tinfer1 │ │ │ ├── .gitignore │ │ │ ├── tinfer1.as │ │ │ └── tinfer1.ref │ │ │ ├── tinfer2 │ │ │ ├── .gitignore │ │ │ ├── tinfer2.as │ │ │ └── tinfer2.ref │ │ │ ├── topsort0 │ │ │ ├── .gitignore │ │ │ └── topsort0.as │ │ │ ├── topsort1 │ │ │ ├── .gitignore │ │ │ └── topsort1.as │ │ │ ├── tree │ │ │ ├── .gitignore │ │ │ ├── tree.as │ │ │ └── tree.ref │ │ │ ├── tree1 │ │ │ ├── .gitignore │ │ │ ├── tree1.as │ │ │ └── tree1.ref │ │ │ ├── tree2 │ │ │ ├── .gitignore │ │ │ ├── tree2.as │ │ │ └── tree2.ref │ │ │ ├── triv0 │ │ │ ├── .gitignore │ │ │ ├── triv0.as │ │ │ └── triv0.ref │ │ │ ├── triv1 │ │ │ ├── .gitignore │ │ │ ├── triv1.as │ │ │ └── triv1.ref │ │ │ ├── triv3 │ │ │ ├── .gitignore │ │ │ ├── triv3.as │ │ │ └── triv3.ref │ │ │ ├── triv4 │ │ │ ├── .gitignore │ │ │ ├── triv4.as │ │ │ └── triv4.ref │ │ │ ├── triv5 │ │ │ ├── .gitignore │ │ │ ├── triv5.as │ │ │ └── triv5.ref │ │ │ ├── triv6 │ │ │ ├── .gitignore │ │ │ ├── triv6.as │ │ │ └── triv6.ref │ │ │ ├── try0 │ │ │ ├── .gitignore │ │ │ ├── try0.as │ │ │ └── try0.ref │ │ │ ├── tuple0 │ │ │ ├── .gitignore │ │ │ ├── tuple0.as │ │ │ └── tuple0.ref │ │ │ ├── tuple1 │ │ │ ├── .gitignore │ │ │ ├── tuple1.as │ │ │ └── tuple1.ref │ │ │ ├── tuple2 │ │ │ ├── .gitignore │ │ │ ├── tuple2.as │ │ │ └── tuple2.ref │ │ │ ├── tuple3 │ │ │ ├── .gitignore │ │ │ ├── tuple3.as │ │ │ └── tuple3.ref │ │ │ ├── tuple4 │ │ │ ├── .gitignore │ │ │ ├── tuple4.as │ │ │ └── tuple4.ref │ │ │ ├── type0 │ │ │ ├── .gitignore │ │ │ ├── type0.as │ │ │ └── type0.ref │ │ │ ├── type1 │ │ │ ├── .gitignore │ │ │ ├── type1.as │ │ │ └── type1.ref │ │ │ ├── type2 │ │ │ ├── .gitignore │ │ │ ├── type2.as │ │ │ └── type2.ref │ │ │ ├── type3 │ │ │ ├── .gitignore │ │ │ └── type3.as │ │ │ ├── type4 │ │ │ ├── .gitignore │ │ │ ├── type4.as │ │ │ └── type4.ref │ │ │ ├── type5 │ │ │ ├── .gitignore │ │ │ ├── type5.as │ │ │ └── type5.ref │ │ │ ├── type7 │ │ │ ├── .gitignore │ │ │ ├── type7.as │ │ │ └── type7.ref │ │ │ ├── type8 │ │ │ ├── .gitignore │ │ │ ├── type8.as │ │ │ └── type8.ref │ │ │ ├── unbal │ │ │ ├── .gitignore │ │ │ └── unbal.as │ │ │ ├── union0 │ │ │ ├── .gitignore │ │ │ ├── union0.as │ │ │ └── union0.ref │ │ │ ├── union1 │ │ │ ├── .gitignore │ │ │ ├── union1.as │ │ │ └── union1.ref │ │ │ ├── union2 │ │ │ ├── .gitignore │ │ │ ├── union2.as │ │ │ └── union2.ref │ │ │ ├── util-t.sh │ │ │ ├── where0 │ │ │ ├── .gitignore │ │ │ ├── where0.as │ │ │ └── where0.ref │ │ │ ├── where1 │ │ │ ├── .gitignore │ │ │ ├── where1.as │ │ │ └── where1.ref │ │ │ ├── where2 │ │ │ ├── .gitignore │ │ │ └── where2.as │ │ │ ├── where3 │ │ │ ├── .gitignore │ │ │ ├── where3.as │ │ │ └── where3.ref │ │ │ └── xfloat-t.sh │ ├── builddoc.mk │ ├── buildlib.am │ ├── buildlib.mk │ ├── config.mk.in │ ├── debuglib │ │ ├── doc │ │ │ ├── README │ │ │ ├── ToDo │ │ │ └── debugger.pdf │ │ ├── include │ │ │ └── debuglib.as │ │ ├── src │ │ │ ├── dbg_bpoint.as │ │ │ ├── dbg_context.as │ │ │ ├── dbg_core.as │ │ │ ├── dbg_defs.as │ │ │ ├── dbg_empty.as │ │ │ ├── dbg_exts.as │ │ │ ├── dbg_file_idx.as │ │ │ ├── dbg_file_tbl.as │ │ │ ├── dbg_fmt.as │ │ │ ├── dbg_gener.as │ │ │ ├── dbg_help.as │ │ │ ├── dbg_istack.as │ │ │ ├── dbg_ltools.as │ │ │ ├── dbg_state.as │ │ │ ├── dbg_ui.as │ │ │ ├── dbg_ui_break.as │ │ │ ├── dbg_utils.as │ │ │ ├── dbg_var.as │ │ │ └── debuglib.as │ │ └── test │ │ │ ├── alg_ffupla.as │ │ │ ├── cmds.compile │ │ │ ├── dbgdemo.as │ │ │ ├── deb00.as │ │ │ ├── deb01.as │ │ │ ├── deb02.as │ │ │ ├── deb03.as │ │ │ ├── deb10.as │ │ │ ├── deb20.as │ │ │ ├── deb30.as │ │ │ ├── deb40.as │ │ │ ├── deb400.as │ │ │ ├── deb400.sh │ │ │ ├── deb4000.as │ │ │ ├── deb50.as │ │ │ ├── deb90.as │ │ │ ├── deb91.as │ │ │ ├── deb92.as │ │ │ ├── deb93.as │ │ │ ├── dom00.as │ │ │ ├── foocat.as │ │ │ ├── freader.as │ │ │ ├── fun00.as │ │ │ ├── fun01.as │ │ │ ├── sit_symbol.as │ │ │ └── trivial.as │ └── testprog.am ├── m4 │ ├── .gitignore │ ├── ax_lib_readline.m4 │ ├── build_id.m4 │ ├── documentation-tests.m4 │ ├── error-on-warn.m4 │ ├── git.m4 │ ├── interp-tests.m4 │ ├── java-tests.m4 │ ├── language.m4 │ ├── readline.m4 │ ├── sbrk.m4 │ └── strict_compile.m4 └── mk │ ├── step.mk │ └── topsort.mk ├── build-macos.sh ├── debian ├── .gitignore ├── changelog ├── compat ├── control ├── copyright ├── docs ├── rules └── source │ └── format └── msvc ├── .gitignore ├── Aldor.sln ├── aldor ├── aldor.vcxproj └── aldor.vcxproj.filters ├── ascomp ├── ascomp.vcxproj └── ascomp.vcxproj.filters ├── libaldor ├── libaldor.vcxproj └── libaldor.vcxproj.filters ├── libalgebra ├── libalgebra.vcxproj └── libalgebra.vcxproj.filters ├── libaxldem ├── libaxldem.vcxproj └── libaxldem.vcxproj.filters ├── libaxllib ├── libaxllib.vcxproj └── libaxllib.vcxproj.filters ├── libfoam ├── libfoam.vcxproj └── libfoam.vcxproj.filters ├── libfoamlib ├── libfoamlib.vcxproj └── libfoamlib.vcxproj.filters └── sieve ├── sieve.vcxproj └── sieve.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- 1 | /.metadata 2 | /.site 3 | *~ 4 | /opt 5 | /build 6 | /run_j 7 | /build-2 8 | /.idea 9 | -------------------------------------------------------------------------------- /aldor/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=aldor 2 | if BUILD_LIBS 3 | SUBDIRS+=lib 4 | endif 5 | 6 | ACLOCAL_AMFLAGS=-I m4 7 | -------------------------------------------------------------------------------- /aldor/aldor/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/aldor/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | SUBDIRS = subcmd \ 3 | tools \ 4 | src \ 5 | lib \ 6 | test 7 | -------------------------------------------------------------------------------- /aldor/aldor/lib/java/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /aldor/aldor/lib/java/src/.gitignore: -------------------------------------------------------------------------------- 1 | /classes 2 | /foamj.jar 3 | -------------------------------------------------------------------------------- /aldor/aldor/lib/java/src/foamj/AldorObject.java: -------------------------------------------------------------------------------- 1 | package foamj; 2 | 3 | public class AldorObject {} 4 | -------------------------------------------------------------------------------- /aldor/aldor/lib/libfoam/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | -------------------------------------------------------------------------------- /aldor/aldor/lib/libfoam/al/value.as: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/aldor/lib/libfoamlib/al/.gitignore: -------------------------------------------------------------------------------- 1 | /foamlib.classlib 2 | /foamlib.jar 3 | *.c 4 | *.cmd 5 | *.java 6 | -------------------------------------------------------------------------------- /aldor/aldor/src/axlgen.c: -------------------------------------------------------------------------------- 1 | #include "axlgen.h" 2 | #include "list.h" 3 | 4 | CREATE_LIST(AInt); 5 | -------------------------------------------------------------------------------- /aldor/aldor/src/foam_cfp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Extra non-foam functions for ieee floats 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /aldor/aldor/src/susage.c: -------------------------------------------------------------------------------- 1 | #include "list.h" 2 | #include "susage.h" 3 | 4 | CREATE_LIST(SlotUsage); 5 | -------------------------------------------------------------------------------- /aldor/aldor/subcmd/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=unitools testaldor 2 | -------------------------------------------------------------------------------- /aldor/aldor/subcmd/testaldor/.gitignore: -------------------------------------------------------------------------------- 1 | /testaldor 2 | -------------------------------------------------------------------------------- /aldor/aldor/test/.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | *.exe 3 | -------------------------------------------------------------------------------- /aldor/aldor/test/gencross0.as: -------------------------------------------------------------------------------- 1 | #include "gencross.as" 2 | -------------------------------------------------------------------------------- /aldor/aldor/test/gencross1.as: -------------------------------------------------------------------------------- 1 | #include "gencross.as" 2 | -------------------------------------------------------------------------------- /aldor/aldor/test/genlist1a.as: -------------------------------------------------------------------------------- 1 | #include "genlist0a.as" -------------------------------------------------------------------------------- /aldor/aldor/test/jimport_opt.as: -------------------------------------------------------------------------------- 1 | #include "jimport.as" 2 | -------------------------------------------------------------------------------- /aldor/aldor/test/prelude.lsp: -------------------------------------------------------------------------------- 1 | (defpackage :FOAM (:use cl)) 2 | (defpackage :FOAM-USER (:use cl FOAM)) 3 | -------------------------------------------------------------------------------- /aldor/aldor/test/rtexns.as: -------------------------------------------------------------------------------- 1 | #include "foamlib" 2 | 3 | -------------------------------------------------------------------------------- /aldor/aldor/test/x.as: -------------------------------------------------------------------------------- 1 | #include "foamlib" 2 | #pile 3 | 4 | XGenerator(T: with): with == add 5 | -------------------------------------------------------------------------------- /aldor/aldor/test/xgenerpkg0.as: -------------------------------------------------------------------------------- 1 | #include "xgenerpkg.as" 2 | -------------------------------------------------------------------------------- /aldor/aldor/test/xgenerpkg1.as: -------------------------------------------------------------------------------- 1 | #include "xgenerpkg.as" 2 | -------------------------------------------------------------------------------- /aldor/aldor/tools/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/aldor/tools/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = unix 2 | -------------------------------------------------------------------------------- /aldor/aldor/tools/monitor/.gitignore: -------------------------------------------------------------------------------- 1 | /evaluator.pst 2 | -------------------------------------------------------------------------------- /aldor/aldor/tools/monitor/eval/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /aldor/aldor/tools/monitor/eval/rt64/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /include 3 | /lib 4 | /lib64 5 | /t.ao 6 | /t.as 7 | -------------------------------------------------------------------------------- /aldor/aldor/tools/monitor/src/.gitignore: -------------------------------------------------------------------------------- 1 | /syscalls*.C 2 | -------------------------------------------------------------------------------- /aldor/aldor/tools/unix/cparse.h: -------------------------------------------------------------------------------- 1 | extern int yylex(); 2 | extern void yyerror(); 3 | 4 | -------------------------------------------------------------------------------- /aldor/aldorug/TsCheck: -------------------------------------------------------------------------------- 1 | Sun Aug 28 12:36:11 1994 2 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/arigato.in: -------------------------------------------------------------------------------- 1 | % cc -c nputs.c 2 | % aldor -Fx -laldor arigato.as nputs.o 3 | % ./arigato 4 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/arigato.out: -------------------------------------------------------------------------------- 1 | 2 | Arigato gozaimasu! 3 | Arigato gozaimasu! 4 | Arigato gozaimasu! 5 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/arigato.sh: -------------------------------------------------------------------------------- 1 | cc -c nputs.c 2 | aldor -Fx -laldor arigato.as nputs.o 3 | ./arigato 4 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/cside.out: -------------------------------------------------------------------------------- 1 | The lcm of 6 and 4 is 12 2 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/error0.in: -------------------------------------------------------------------------------- 1 | % aldor error0.as 2 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/error0.sh: -------------------------------------------------------------------------------- 1 | aldor error0.as 2 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/sieve.in: -------------------------------------------------------------------------------- 1 | % aldor -Fx -laldor sieve.as 2 | % ./sieve 3 | -------------------------------------------------------------------------------- /aldor/aldorug/commands/sieve.sh: -------------------------------------------------------------------------------- 1 | aldor -Fx -laldor sieve.as 2 | ./sieve 3 | -------------------------------------------------------------------------------- /aldor/aldorug/examples/simple1.as: -------------------------------------------------------------------------------- 1 | #include "aldor" 2 | 3 | double(n: AldorInteger): AldorInteger == n + n 4 | -------------------------------------------------------------------------------- /aldor/aldorug/examples/simple4a.as: -------------------------------------------------------------------------------- 1 | #include "aldor" 2 | 3 | MiniList(S: OutputType): MiniListType(S) == ... 4 | -------------------------------------------------------------------------------- /aldor/aldorug/samples/greet.out: -------------------------------------------------------------------------------- 1 | What is your name? 2 | Hello Ethel, and goodbye... 3 | -------------------------------------------------------------------------------- /aldor/aldorug/samples/hello.out: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /aldor/aldorug/samples/symbol.out: -------------------------------------------------------------------------------- 1 | 'hello' 2 | -------------------------------------------------------------------------------- /aldor/aldorug/version.tex: -------------------------------------------------------------------------------- 1 | \def\asharpver{1.0} 2 | -------------------------------------------------------------------------------- /aldor/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | autoreconf --verbose --install 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.java 3 | *.lsp 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = include src test doc 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = 2 | if BUILD_DOCS 3 | SUBDIRS+=tex 4 | endif 5 | -------------------------------------------------------------------------------- /aldor/lib/aldor/doc/tex/refer.tex: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | \section{Reference Manual} 4 | 5 | \input alltypes 6 | -------------------------------------------------------------------------------- /aldor/lib/aldor/src/.gitignore: -------------------------------------------------------------------------------- 1 | /jar 2 | *.jar 3 | -------------------------------------------------------------------------------- /aldor/lib/aldor/src/test/Makefile.deps: -------------------------------------------------------------------------------- 1 | library_deps := lang base arith datastruc util $(GMPDIR) 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/avl-set/.gitignore: -------------------------------------------------------------------------------- 1 | /avl-set 2 | /avl-set.c 3 | /avl-set-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/avl-set2/.gitignore: -------------------------------------------------------------------------------- 1 | /avl-set2 2 | /avl-set2.c 3 | /avl-set2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1332/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1332 2 | /bug1332.c 3 | /bug1332-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1332/bug1332.ref: -------------------------------------------------------------------------------- 1 | 1.79769313486231467e+308 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1333/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1333 2 | /bug1333.c 3 | /bug1333-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1333/bug1333.ref: -------------------------------------------------------------------------------- 1 | 1.79769313486231467e+308 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1334/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1334 2 | /bug1334.c 3 | /bug1334-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1334/bug1334.ref: -------------------------------------------------------------------------------- 1 | 1.79769313486231467e+308 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1337/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1337 2 | /bug1337.c 3 | /bug1337-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1340/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1340 2 | /bug1340.c 3 | /bug1340-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bug1340/bug1340.ref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugCklst/.gitignore: -------------------------------------------------------------------------------- 1 | /bugCklst 2 | /bugCklst.c 3 | /bugCklst-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugCklst/bugCklst.ref: -------------------------------------------------------------------------------- 1 | 6 2 | List Exception 3 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugExtend1/.gitignore: -------------------------------------------------------------------------------- 1 | /bugExtend1 2 | /bugExtend1.c 3 | /bugExtend1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugFree/.gitignore: -------------------------------------------------------------------------------- 1 | /bugFree 2 | /bugFree.c 3 | /bugFree-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugReturn/.gitignore: -------------------------------------------------------------------------------- 1 | /bugReturn 2 | /bugReturn.c 3 | /bugReturn-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_1/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_1 2 | /bugreport_1.c 3 | /bugreport_1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_13/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_13 2 | /bugreport_13.c 3 | /bugreport_13-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_1347/bugreport_1347.ref: -------------------------------------------------------------------------------- 1 | [0,0,0,0,0,0,0,0,0,0,0] 2 | [0,1,0,0,0,0,0,0,0,0,0] 3 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_14/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_14 2 | /bugreport_14.c 3 | /bugreport_14-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_14/bugreport_14.ref: -------------------------------------------------------------------------------- 1 | BBB 2 | AAA 3 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_15/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_15 2 | /bugreport_15.c 3 | /bugreport_15-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_1a/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_1a 2 | /bugreport_1a.c 3 | /bugreport_1a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_21/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_21 2 | /bugreport_21.c 3 | /bugreport_21-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_25/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_25 2 | /bugreport_25.c 3 | /bugreport_25-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_5/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_5 2 | /bugreport_5.c 3 | /bugreport_5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_7/.gitignore: -------------------------------------------------------------------------------- 1 | /bugreport_7 2 | /bugreport_7.c 3 | /bugreport_7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/bugreport_7/bugreport_7.ref: -------------------------------------------------------------------------------- 1 | 1 = [1, 1] 2 | z = [8, 100] 3 | 1 = [8, 100] 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/cond/cond.ref: -------------------------------------------------------------------------------- 1 | This really should be 13: 13 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/expt/.gitignore: -------------------------------------------------------------------------------- 1 | /expt 2 | /expt.c 3 | /expt-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/hang/.gitignore: -------------------------------------------------------------------------------- 1 | /hang 2 | /hang.c 3 | /hang-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/hang/hang.ref: -------------------------------------------------------------------------------- 1 | [1,2] 2 | [2] 3 | [2] 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/has-bug1/.gitignore: -------------------------------------------------------------------------------- 1 | /has-bug1 2 | /has-bug1.c 3 | /has-bug1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/incl/addone.as: -------------------------------------------------------------------------------- 1 | x := x + 1; 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/intfact/.gitignore: -------------------------------------------------------------------------------- 1 | /intfact 2 | /intfact.c 3 | /intfact-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/intfact/intfact.ref: -------------------------------------------------------------------------------- 1 | start 2 | end 3 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/issue2/.gitignore: -------------------------------------------------------------------------------- 1 | /issue2 2 | /issue2.c 3 | /issue2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/issue38/.gitignore: -------------------------------------------------------------------------------- 1 | /issue38 2 | /issue38.c 3 | /issue38-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/issue38/issue38.ref: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 0 3 | 1 4 | 9223372036854775807 5 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/localcoerce/.gitignore: -------------------------------------------------------------------------------- 1 | /localcoerce 2 | /localcoerce.c 3 | /localcoerce-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/removebug/.gitignore: -------------------------------------------------------------------------------- 1 | /removebug 2 | /removebug.c 3 | /removebug-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/removebug/removebug.ref: -------------------------------------------------------------------------------- 1 | [1,3] 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/removebug2/.gitignore: -------------------------------------------------------------------------------- 1 | /removebug2 2 | /removebug2.c 3 | /removebug2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/removebug2/removebug2.ref: -------------------------------------------------------------------------------- 1 | [1,3] 2 | [1,3] 3 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/testargs/.gitignore: -------------------------------------------------------------------------------- 1 | /testargs 2 | /testargs.c 3 | /testargs-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/testargs/testargs.ref: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /aldor/lib/aldor/test/testbug/.gitignore: -------------------------------------------------------------------------------- 1 | /testbug 2 | /testbug.c 3 | /testbug-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.java 3 | *.lsp 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = include src test doc 2 | -------------------------------------------------------------------------------- /aldor/lib/algebra/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = 2 | if BUILD_DOCS 3 | SUBDIRS+=tex 4 | endif 5 | -------------------------------------------------------------------------------- /aldor/lib/algebra/doc/tex/refer.tex: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | \section{Reference Manual} 4 | 5 | \input alltypes 6 | -------------------------------------------------------------------------------- /aldor/lib/algebra/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | /jar 3 | -------------------------------------------------------------------------------- /aldor/lib/algebra/src/extree/Makefile.deps: -------------------------------------------------------------------------------- 1 | sit_optools_deps := sit_extree 2 | library_deps := util 3 | -------------------------------------------------------------------------------- /aldor/lib/algebra/src/util/Makefile.deps: -------------------------------------------------------------------------------- 1 | library := alg_version 2 | library_deps := 3 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/.gitignore: -------------------------------------------------------------------------------- 1 | /tst_complex 2 | /tst_mint 3 | /tst_random 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/Trandom/.gitignore: -------------------------------------------------------------------------------- 1 | /Trandom 2 | /Trandom.c 3 | /Trandom-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bug1335/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1335 2 | /bug1335.c 3 | /bug1335-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bug1335/bug1335.ref: -------------------------------------------------------------------------------- 1 | g = 1 ----> [GOOD] 2 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bug1341/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1341 2 | /bug1341.c 3 | /bug1341-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bug1342/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1342 2 | /bug1342.c 3 | /bug1342-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bugExtend2/.gitignore: -------------------------------------------------------------------------------- 1 | /bugExtend2 2 | /bugExtend2.c 3 | /bugExtend2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bugreport_1369/bugreport_1369.ref: -------------------------------------------------------------------------------- 1 | p1: 1+X 2 | p2: 1 3 | p1*p2: 1+X 4 | 5 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/bugreport_1370/bugreport_1370.ref: -------------------------------------------------------------------------------- 1 | e=1 2 | r=3 3 | p=3 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/issue56/.gitignore: -------------------------------------------------------------------------------- 1 | /issue56 2 | /issue56.c 3 | /issue56-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/issue56/issue56.ref: -------------------------------------------------------------------------------- 1 | F 2 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/max/.gitignore: -------------------------------------------------------------------------------- 1 | /max 2 | /max.c 3 | /max-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/modpbug/.gitignore: -------------------------------------------------------------------------------- 1 | /modpbug 2 | /modpbug.c 3 | /modpbug-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/optbug/.gitignore: -------------------------------------------------------------------------------- 1 | /optbug 2 | /optbug.c 3 | /optbug-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/optbug/optbug.ref: -------------------------------------------------------------------------------- 1 | Calling rank()...T 2 | 3 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/optbug2/.gitignore: -------------------------------------------------------------------------------- 1 | /optbug2 2 | /optbug2.c 3 | /optbug2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/optbug2/optbug2.ref: -------------------------------------------------------------------------------- 1 | rank(m) = 4 2 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/opteqbug/.gitignore: -------------------------------------------------------------------------------- 1 | /opteqbug 2 | /opteqbug.c 3 | /opteqbug-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/pftest/.gitignore: -------------------------------------------------------------------------------- 1 | /pftest 2 | /pftest.c 3 | /pftest-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/primetest/.gitignore: -------------------------------------------------------------------------------- 1 | /primetest 2 | /primetest.c 3 | /primetest-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/primetest/primetest.ref: -------------------------------------------------------------------------------- 1 | T 2 | -------------------------------------------------------------------------------- /aldor/lib/algebra/test/tstSprsUniPol/tstSprsUniPol.ref: -------------------------------------------------------------------------------- 1 | blah 2 | -------------------------------------------------------------------------------- /aldor/lib/ax0/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = include src test 2 | -------------------------------------------------------------------------------- /aldor/lib/ax0/include/Makefile.am: -------------------------------------------------------------------------------- 1 | dataincludedir = $(prefix)/include 2 | datainclude_DATA = ax0.as 3 | -------------------------------------------------------------------------------- /aldor/lib/axldem/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.java 3 | *.lsp 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = include src test 2 | -------------------------------------------------------------------------------- /aldor/lib/axldem/include/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/lib/axldem/include/Makefile.am: -------------------------------------------------------------------------------- 1 | dataincludedir = $(prefix)/include 2 | datainclude_DATA = axldem.as 3 | -------------------------------------------------------------------------------- /aldor/lib/axldem/src/al/.gitignore: -------------------------------------------------------------------------------- 1 | /*.c 2 | /*.fm 3 | /*.txt 4 | /*.cmd 5 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/bug1089/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1089 2 | /bug1089.c 3 | /bug1089-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/bug1168/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1168 2 | /bug1168.c 3 | /bug1168-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/catdef2/.gitignore: -------------------------------------------------------------------------------- 1 | /catdef2 2 | /catdef2.c 3 | /catdef2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/f21/.gitignore: -------------------------------------------------------------------------------- 1 | /f21 2 | /f21.c 3 | /f21-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/f21/f21.ref: -------------------------------------------------------------------------------- 1 | 1.1772555452655 2 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/float2/.gitignore: -------------------------------------------------------------------------------- 1 | /float2 2 | /float2.c 3 | /float2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/gbtest1/.gitignore: -------------------------------------------------------------------------------- 1 | /gbtest1 2 | /gbtest1.c 3 | /gbtest1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/hilbert1/.gitignore: -------------------------------------------------------------------------------- 1 | /hilbert1 2 | /hilbert1.c 3 | /hilbert1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/intfact/.gitignore: -------------------------------------------------------------------------------- 1 | /intfact 2 | /intfact.c 3 | /intfact-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/iroots/.gitignore: -------------------------------------------------------------------------------- 1 | /iroots 2 | /iroots.c 3 | /iroots-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/scobind1/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind1 2 | /scobind1.c 3 | /scobind1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axldem/test/type6/.gitignore: -------------------------------------------------------------------------------- 1 | /type6 2 | /type6.c 3 | /type6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = include src test 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/include/Makefile.am: -------------------------------------------------------------------------------- 1 | dataincludedir = $(prefix)/include 2 | datainclude_DATA = axllib.as 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.java 3 | *.lsp 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/src/al/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.cmd 3 | *.java 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/1test/.gitignore: -------------------------------------------------------------------------------- 1 | /1test 2 | /1test.c 3 | /1test-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abcheck0/.gitignore: -------------------------------------------------------------------------------- 1 | /abcheck0 2 | /abcheck0.c 3 | /abcheck0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abcheck1/.gitignore: -------------------------------------------------------------------------------- 1 | /abcheck1 2 | /abcheck1.c 3 | /abcheck1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abcheck2/.gitignore: -------------------------------------------------------------------------------- 1 | /abcheck2 2 | /abcheck2.c 3 | /abcheck2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abcheck3/.gitignore: -------------------------------------------------------------------------------- 1 | /abcheck3 2 | /abcheck3.c 3 | /abcheck3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abnorm0/.gitignore: -------------------------------------------------------------------------------- 1 | /abnorm0 2 | /abnorm0.c 3 | /abnorm0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abnorm1/.gitignore: -------------------------------------------------------------------------------- 1 | /abnorm1 2 | /abnorm1.c 3 | /abnorm1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/abnorm2/.gitignore: -------------------------------------------------------------------------------- 1 | /abnorm2 2 | /abnorm2.c 3 | /abnorm2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/apply0/.gitignore: -------------------------------------------------------------------------------- 1 | /apply0 2 | /apply0.c 3 | /apply0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/array0/.gitignore: -------------------------------------------------------------------------------- 1 | /array0 2 | /array0.c 3 | /array0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/array1/.gitignore: -------------------------------------------------------------------------------- 1 | /array1 2 | /array1.c 3 | /array1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/arrepl1a/.gitignore: -------------------------------------------------------------------------------- 1 | /arrepl1a 2 | /arrepl1a.c 3 | /arrepl1a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/arrepl1b/.gitignore: -------------------------------------------------------------------------------- 1 | /arrepl1b 2 | /arrepl1b.c 3 | /arrepl1b-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/arrepl1c/.gitignore: -------------------------------------------------------------------------------- 1 | /arrepl1c 2 | /arrepl1c.c 3 | /arrepl1c-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/arrepla/.gitignore: -------------------------------------------------------------------------------- 1 | /arrepla 2 | /arrepla.c 3 | /arrepla-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/arreplb/.gitignore: -------------------------------------------------------------------------------- 1 | /arreplb 2 | /arreplb.c 3 | /arreplb-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/arreplc/.gitignore: -------------------------------------------------------------------------------- 1 | /arreplc 2 | /arreplc.c 3 | /arreplc-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/assign0/.gitignore: -------------------------------------------------------------------------------- 1 | /assign0 2 | /assign0.c 3 | /assign0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/assign1/.gitignore: -------------------------------------------------------------------------------- 1 | /assign1 2 | /assign1.c 3 | /assign1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/assign2/.gitignore: -------------------------------------------------------------------------------- 1 | /assign2 2 | /assign2.c 3 | /assign2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/assign3/.gitignore: -------------------------------------------------------------------------------- 1 | /assign3 2 | /assign3.c 3 | /assign3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/assign4/.gitignore: -------------------------------------------------------------------------------- 1 | /assign4 2 | /assign4.c 3 | /assign4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/basic/.gitignore: -------------------------------------------------------------------------------- 1 | /basic 2 | /basic.c 3 | /basic-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/big/.gitignore: -------------------------------------------------------------------------------- 1 | /big 2 | /big.c 3 | /big-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bigmand/.gitignore: -------------------------------------------------------------------------------- 1 | /bigmand 2 | /bigmand.c 3 | /bigmand-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/binadd/.gitignore: -------------------------------------------------------------------------------- 1 | /binadd 2 | /binadd.c 3 | /binadd-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/binadd/binadd.ref: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug/.gitignore: -------------------------------------------------------------------------------- 1 | /bug 2 | /bug.c 3 | /bug-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1008/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1008 2 | /bug1008.c 3 | /bug1008-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1008/bug1008.ref: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1009/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1009 2 | /bug1009.c 3 | /bug1009-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1015/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1015 2 | /bug1015.c 3 | /bug1015-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1015/bug1015.ref: -------------------------------------------------------------------------------- 1 | 3,3 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1020/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1020 2 | /bug1020.c 3 | /bug1020-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1021/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1021 2 | /bug1021.c 3 | /bug1021-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1022/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1022 2 | /bug1022.c 3 | /bug1022-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1023/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1023 2 | /bug1023.c 3 | /bug1023-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1024/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1024 2 | /bug1024.c 3 | /bug1024-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1025/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1025 2 | /bug1025.c 3 | /bug1025-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1027/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1027 2 | /bug1027.c 3 | /bug1027-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1027/bug1027.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1028/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1028 2 | /bug1028.c 3 | /bug1028-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1029/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1029 2 | /bug1029.c 3 | /bug1029-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1029/bug1029.ref: -------------------------------------------------------------------------------- 1 | a,b,c = 1551877902,1551877902,1551877902 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1030/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1030 2 | /bug1030.c 3 | /bug1030-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1031/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1031 2 | /bug1031.c 3 | /bug1031-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1031/bug1031.ref: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1038/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1038 2 | /bug1038.c 3 | /bug1038-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1039/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1039 2 | /bug1039.c 3 | /bug1039-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1039/bug1039.ref: -------------------------------------------------------------------------------- 1 | XX: 2.2 2 | 2.2 3 | 2.2 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1041/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1041 2 | /bug1041.c 3 | /bug1041-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1044/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1044 2 | /bug1044.c 3 | /bug1044-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1045/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1045 2 | /bug1045.c 3 | /bug1045-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1046/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1046 2 | /bug1046.c 3 | /bug1046-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1053/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1053 2 | /bug1053.c 3 | /bug1053-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1053/bug1053.ref: -------------------------------------------------------------------------------- 1 | foo(2) = 2 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1054/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1054 2 | /bug1054.c 3 | /bug1054-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1055/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1055 2 | /bug1055.c 3 | /bug1055-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1056/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1056 2 | /bug1056.c 3 | /bug1056-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1061/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1061 2 | /bug1061.c 3 | /bug1061-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1061/bug1061.ref: -------------------------------------------------------------------------------- 1 | commutator([ 2 1 3 ],[ 1 3 2 ]) = [ 2 3 1 ] 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1062/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1062 2 | /bug1062.c 3 | /bug1062-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1062/bug1062.ref: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1063/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1063 2 | /bug1063.c 3 | /bug1063-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1063/bug1063.ref: -------------------------------------------------------------------------------- 1 | 123^-2 = 15129 ??? 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1064/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1064 2 | /bug1064.c 3 | /bug1064-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1065/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1065 2 | /bug1065.c 3 | /bug1065-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1066/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1066 2 | /bug1066.c 3 | /bug1066-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1067/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1067 2 | /bug1067.c 3 | /bug1067-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1067/bug1067.ref: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1069/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1069 2 | /bug1069.c 3 | /bug1069-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1071/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1071 2 | /bug1071.c 3 | /bug1071-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1074/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1074 2 | /bug1074.c 3 | /bug1074-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1076/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1076 2 | /bug1076.c 3 | /bug1076-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1077/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1077 2 | /bug1077.c 3 | /bug1077-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1077/bug1077.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1078/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1078 2 | /bug1078.c 3 | /bug1078-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1078/bug1078.ref: -------------------------------------------------------------------------------- 1 | foo(2) = smallprimes.1 = 3 2 | 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1079/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1079 2 | /bug1079.c 3 | /bug1079-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1079/bug1079.ref: -------------------------------------------------------------------------------- 1 | foo(2) = 2 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1087/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1087 2 | /bug1087.c 3 | /bug1087-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1090/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1090 2 | /bug1090.c 3 | /bug1090-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1091/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1091 2 | /bug1091.c 3 | /bug1091-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1092/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1092 2 | /bug1092.c 3 | /bug1092-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1093/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1093 2 | /bug1093.c 3 | /bug1093-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1096/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1096 2 | /bug1096.c 3 | /bug1096-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1098/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1098 2 | /bug1098.c 3 | /bug1098-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1099/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1099 2 | /bug1099.c 3 | /bug1099-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1099/bug1099.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1101/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1101 2 | /bug1101.c 3 | /bug1101-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1105/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1105 2 | /bug1105.c 3 | /bug1105-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1106/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1106 2 | /bug1106.c 3 | /bug1106-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1106/bug1106.ref: -------------------------------------------------------------------------------- 1 | foo() = hey I gave a value for the argument! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1110/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1110 2 | /bug1110.c 3 | /bug1110-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1111/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1111 2 | /bug1111.c 3 | /bug1111-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1111/bug1111.ref: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1113/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1113 2 | /bug1113.c 3 | /bug1113-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1113/bug1113.ref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1114/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1114 2 | /bug1114.c 3 | /bug1114-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1115/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1115 2 | /bug1115.c 3 | /bug1115-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1119/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1119 2 | /bug1119.c 3 | /bug1119-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1121/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1121 2 | /bug1121.c 3 | /bug1121-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1121/bug1121.ref: -------------------------------------------------------------------------------- 1 | OK 2 | OK2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1123/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1123 2 | /bug1123.c 3 | /bug1123-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1125/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1125 2 | /bug1125.c 3 | /bug1125-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1127/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1127 2 | /bug1127.c 3 | /bug1127-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1127/bug1127.ref: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1129/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1129 2 | /bug1129.c 3 | /bug1129-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1130/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1130 2 | /bug1130.c 3 | /bug1130-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1131/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1131 2 | /bug1131.c 3 | /bug1131-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1132/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1132 2 | /bug1132.c 3 | /bug1132-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1137/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1137 2 | /bug1137.c 3 | /bug1137-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1137/bug1137.ref: -------------------------------------------------------------------------------- 1 | foo42 ~= bar42 2 | foo42 ~=foo42also 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1139/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1139 2 | /bug1139.c 3 | /bug1139-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1142/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1142 2 | /bug1142.c 3 | /bug1142-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1144/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1144 2 | /bug1144.c 3 | /bug1144-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1145/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1145 2 | /bug1145.c 3 | /bug1145-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1145/bug1145.ref: -------------------------------------------------------------------------------- 1 | q = 1099511627776 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1149/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1149 2 | /bug1149.c 3 | /bug1149-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1149/bug1149.ref: -------------------------------------------------------------------------------- 1 | dv(23,3) = 7 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1151/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1151 2 | /bug1151.c 3 | /bug1151-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1154/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1154 2 | /bug1154.c 3 | /bug1154-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1159/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1159 2 | /bug1159.c 3 | /bug1159-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1160/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1160 2 | /bug1160.c 3 | /bug1160-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1161/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1161 2 | /bug1161.c 3 | /bug1161-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1162/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1162 2 | /bug1162.c 3 | /bug1162-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1162/bug1162.ref: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1164/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1164 2 | /bug1164.c 3 | /bug1164-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1164/bug1164.ref: -------------------------------------------------------------------------------- 1 | 1.79769313486232e+308 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1165/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1165 2 | /bug1165.c 3 | /bug1165-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1166/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1166 2 | /bug1166.c 3 | /bug1166-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1170/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1170 2 | /bug1170.c 3 | /bug1170-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1170/bug1170.ref: -------------------------------------------------------------------------------- 1 | bad bug! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1171/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1171 2 | /bug1171.c 3 | /bug1171-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1171/bug1171.ref: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1172/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1172 2 | /bug1172.c 3 | /bug1172-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1172/bug1172.ref: -------------------------------------------------------------------------------- 1 | foo("very bad bug") = "very bad bug" 2 | foo(42) = 84 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1176/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1176 2 | /bug1176.c 3 | /bug1176-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1176/bug1176.ref: -------------------------------------------------------------------------------- 1 | Storage allocation error (attempt to free unknown space). 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1177/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1177 2 | /bug1177.c 3 | /bug1177-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1177/bug1177.ref: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1178/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1178 2 | /bug1178.c 3 | /bug1178-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1179/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1179 2 | /bug1179.c 3 | /bug1179-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1180/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1180 2 | /bug1180.c 3 | /bug1180-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1180/bug1180.ref: -------------------------------------------------------------------------------- 1 | E1(1): x E1(2): y 2 | E2(1): x E2(2): y 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1182/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1182 2 | /bug1182.c 3 | /bug1182-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1183/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1183 2 | /bug1183.c 3 | /bug1183-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1184/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1184 2 | /bug1184.c 3 | /bug1184-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1188/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1188 2 | /bug1188.c 3 | /bug1188-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1188/bug1188.ref: -------------------------------------------------------------------------------- 1 | foo(42) 2 | foo() 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1189/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1189 2 | /bug1189.c 3 | /bug1189-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1190/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1190 2 | /bug1190.c 3 | /bug1190-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1190/bug1190.ref: -------------------------------------------------------------------------------- 1 | This is a test 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1191/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1191 2 | /bug1191.c 3 | /bug1191-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1191/bug1191.ref: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1192/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1192 2 | /bug1192.c 3 | /bug1192-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1193/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1193 2 | /bug1193.c 3 | /bug1193-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1195/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1195 2 | /bug1195.c 3 | /bug1195-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1196/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1196 2 | /bug1196.c 3 | /bug1196-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1198/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1198 2 | /bug1198.c 3 | /bug1198-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1199/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1199 2 | /bug1199.c 3 | /bug1199-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1200/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1200 2 | /bug1200.c 3 | /bug1200-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1202/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1202 2 | /bug1202.c 3 | /bug1202-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1204/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1204 2 | /bug1204.c 3 | /bug1204-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1206/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1206 2 | /bug1206.c 3 | /bug1206-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1210/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1210 2 | /bug1210.c 3 | /bug1210-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1211/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1211 2 | /bug1211.c 3 | /bug1211-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1212/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1212 2 | /bug1212.c 3 | /bug1212-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1212/bug1212.ref: -------------------------------------------------------------------------------- 1 | ((SOMETHING)) 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1217/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1217 2 | /bug1217.c 3 | /bug1217-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1217/bug1217.ref: -------------------------------------------------------------------------------- 1 | var = 0 2 | var = 1 3 | var = 2 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1219/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1219 2 | /bug1219.c 3 | /bug1219-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1220/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1220 2 | /bug1220.c 3 | /bug1220-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1221/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1221 2 | /bug1221.c 3 | /bug1221-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1221/bug1221.ref: -------------------------------------------------------------------------------- 1 | (EINS) 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1224/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1224 2 | /bug1224.c 3 | /bug1224-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1228/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1228 2 | /bug1228.c 3 | /bug1228-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1228/bug1228.ref: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1234/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1234 2 | /bug1234.c 3 | /bug1234-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1234/bug1234.ref: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1235/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1235 2 | /bug1235.c 3 | /bug1235-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1235/bug1235.ref: -------------------------------------------------------------------------------- 1 | shift(-10399264, -1) = -5199632 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1237/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1237 2 | /bug1237.c 3 | /bug1237-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1237/bug1237.ref: -------------------------------------------------------------------------------- 1 | x = 250, y = 250 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1238/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1238 2 | /bug1238.c 3 | /bug1238-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1242/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1242 2 | /bug1242.c 3 | /bug1242-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1246/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1246 2 | /bug1246.c 3 | /bug1246-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1247/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1247 2 | /bug1247.c 3 | /bug1247-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1248/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1248 2 | /bug1248.c 3 | /bug1248-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1250/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1250 2 | /bug1250.c 3 | /bug1250-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1250/bug1250.ref: -------------------------------------------------------------------------------- 1 | hash(42) = 42 2 | hash(42) = 200083 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1252/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1252 2 | /bug1252.c 3 | /bug1252-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1253/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1253 2 | /bug1253.c 3 | /bug1253-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1260/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1260 2 | /bug1260.c 3 | /bug1260-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1260/bug1260.ref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1261/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1261 2 | /bug1261.c 3 | /bug1261-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1263/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1263 2 | /bug1263.c 3 | /bug1263-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1265/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1265 2 | /bug1265.c 3 | /bug1265-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1265/bug1265.ref: -------------------------------------------------------------------------------- 1 | Successful termination. 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1266/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1266 2 | /bug1266.c 3 | /bug1266-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1266/bug1266.ref: -------------------------------------------------------------------------------- 1 | You gave 0 arguments. 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1268/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1268 2 | /bug1268.c 3 | /bug1268-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1269/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1269 2 | /bug1269.c 3 | /bug1269-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1270/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1270 2 | /bug1270.c 3 | /bug1270-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1272/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1272 2 | /bug1272.c 3 | /bug1272-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1272/bug1272.ref: -------------------------------------------------------------------------------- 1 | a = 2 2 | b = 3 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1275/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1275 2 | /bug1275.c 3 | /bug1275-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1277/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1277 2 | /bug1277.c 3 | /bug1277-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1278/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1278 2 | /bug1278.c 3 | /bug1278-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1278/bug1278.ref: -------------------------------------------------------------------------------- 1 | asserted?(fred) = false 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1279/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1279 2 | /bug1279.c 3 | /bug1279-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1280/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1280 2 | /bug1280.c 3 | /bug1280-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1281/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1281 2 | /bug1281.c 3 | /bug1281-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1285/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1285 2 | /bug1285.c 3 | /bug1285-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1285/bug1285.ref: -------------------------------------------------------------------------------- 1 | Here goes ... 2 | ... BOOM! 3 | That's all folks! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1286/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1286 2 | /bug1286.c 3 | /bug1286-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1286/bug1286.ref: -------------------------------------------------------------------------------- 1 | Here goes ... 2 | ... BOOM! 3 | That's all folks! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1287/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1287 2 | /bug1287.c 3 | /bug1287-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1287/bug1287.ref: -------------------------------------------------------------------------------- 1 | Here goes ... 2 | ... BOOM! 3 | That's all folks! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1290/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1290 2 | /bug1290.c 3 | /bug1290-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1295/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1295 2 | /bug1295.c 3 | /bug1295-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1295/bug1295.ref: -------------------------------------------------------------------------------- 1 | 1 2 | 11 3 | 1 4 | 22 5 | 2 6 | 1, 2 7 | 2 8 | 3, 4 9 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1301/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1301 2 | /bug1301.c 3 | /bug1301-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1301/bug1301.ref: -------------------------------------------------------------------------------- 1 | 4 2 | 4 3 | 0 4 | 0 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1302/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1302 2 | /bug1302.c 3 | /bug1302-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1303/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1303 2 | /bug1303.c 3 | /bug1303-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1307/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1307 2 | /bug1307.c 3 | /bug1307-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1310/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1310 2 | /bug1310.c 3 | /bug1310-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1311/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1311 2 | /bug1311.c 3 | /bug1311-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1313/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1313 2 | /bug1313.c 3 | /bug1313-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1314/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1314 2 | /bug1314.c 3 | /bug1314-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1315/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1315 2 | /bug1315.c 3 | /bug1315-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1316/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1316 2 | /bug1316.c 3 | /bug1316-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1317/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1317 2 | /bug1317.c 3 | /bug1317-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1318/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1318 2 | /bug1318.c 3 | /bug1318-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1318/bug1318.ref: -------------------------------------------------------------------------------- 1 | [ 2 | (1) 3 | (12) 4 | ] 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1319/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1319 2 | /bug1319.c 3 | /bug1319-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1324/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1324 2 | /bug1324.c 3 | /bug1324-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1325/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1325 2 | /bug1325.c 3 | /bug1325-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1327/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1327 2 | /bug1327.c 3 | /bug1327-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1327/bug1327.ref: -------------------------------------------------------------------------------- 1 | foo(42) 2 | foo() 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1328/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1328 2 | /bug1328.c 3 | /bug1328-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1328/bug1328.ref: -------------------------------------------------------------------------------- 1 | INIT:1 2 | VAR: 1 3 | y: :x^1*y^0 4 | VAR: 1 5 | z: :x^1*y^0 6 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1331/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1331 2 | /bug1331.c 3 | /bug1331-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1338/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1338 2 | /bug1338.c 3 | /bug1338-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1339/.gitignore: -------------------------------------------------------------------------------- 1 | /bug1339 2 | /bug1339.c 3 | /bug1339-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug1339/bug1339.ref: -------------------------------------------------------------------------------- 1 | b0 = false 2 | has? = true 3 | false 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug626/.gitignore: -------------------------------------------------------------------------------- 1 | /bug626 2 | /bug626.c 3 | /bug626-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug626/bug626.ref: -------------------------------------------------------------------------------- 1 | For large values of 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug696/.gitignore: -------------------------------------------------------------------------------- 1 | /bug696 2 | /bug696.c 3 | /bug696-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug702/.gitignore: -------------------------------------------------------------------------------- 1 | /bug702 2 | /bug702.c 3 | /bug702-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug702/bug702.ref: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | false 4 | true 5 | 3 6 | 2.71828 7 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug715/.gitignore: -------------------------------------------------------------------------------- 1 | /bug715 2 | /bug715.c 3 | /bug715-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug778/.gitignore: -------------------------------------------------------------------------------- 1 | /bug778 2 | /bug778.c 3 | /bug778-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug798/.gitignore: -------------------------------------------------------------------------------- 1 | /bug798 2 | /bug798.c 3 | /bug798-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug814/.gitignore: -------------------------------------------------------------------------------- 1 | /bug814 2 | /bug814.c 3 | /bug814-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug818/.gitignore: -------------------------------------------------------------------------------- 1 | /bug818 2 | /bug818.c 3 | /bug818-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug821/.gitignore: -------------------------------------------------------------------------------- 1 | /bug821 2 | /bug821.c 3 | /bug821-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug822/.gitignore: -------------------------------------------------------------------------------- 1 | /bug822 2 | /bug822.c 3 | /bug822-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug822/bug822.ref: -------------------------------------------------------------------------------- 1 | ff 2 | gg 3 | ff 4 | gg 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug823/.gitignore: -------------------------------------------------------------------------------- 1 | /bug823 2 | /bug823.c 3 | /bug823-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug826/.gitignore: -------------------------------------------------------------------------------- 1 | /bug826 2 | /bug826.c 3 | /bug826-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug826/bug826.ref: -------------------------------------------------------------------------------- 1 | list() 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug835/.gitignore: -------------------------------------------------------------------------------- 1 | /bug835 2 | /bug835.c 3 | /bug835-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug842/.gitignore: -------------------------------------------------------------------------------- 1 | /bug842 2 | /bug842.c 3 | /bug842-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug848/.gitignore: -------------------------------------------------------------------------------- 1 | /bug848 2 | /bug848.c 3 | /bug848-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug849/.gitignore: -------------------------------------------------------------------------------- 1 | /bug849 2 | /bug849.c 3 | /bug849-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug852/.gitignore: -------------------------------------------------------------------------------- 1 | /bug852 2 | /bug852.c 3 | /bug852-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug867/.gitignore: -------------------------------------------------------------------------------- 1 | /bug867 2 | /bug867.c 3 | /bug867-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug879/.gitignore: -------------------------------------------------------------------------------- 1 | /bug879 2 | /bug879.c 3 | /bug879-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug885/.gitignore: -------------------------------------------------------------------------------- 1 | /bug885 2 | /bug885.c 3 | /bug885-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug885/bug885.ref: -------------------------------------------------------------------------------- 1 | 3 2 | (3/1) 3 | (9/1) 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug892/.gitignore: -------------------------------------------------------------------------------- 1 | /bug892 2 | /bug892.c 3 | /bug892-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug897/.gitignore: -------------------------------------------------------------------------------- 1 | /bug897 2 | /bug897.c 3 | /bug897-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug898/.gitignore: -------------------------------------------------------------------------------- 1 | /bug898 2 | /bug898.c 3 | /bug898-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug901/.gitignore: -------------------------------------------------------------------------------- 1 | /bug901 2 | /bug901.c 3 | /bug901-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug910/.gitignore: -------------------------------------------------------------------------------- 1 | /bug910 2 | /bug910.c 3 | /bug910-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug911/.gitignore: -------------------------------------------------------------------------------- 1 | /bug911 2 | /bug911.c 3 | /bug911-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug928/.gitignore: -------------------------------------------------------------------------------- 1 | /bug928 2 | /bug928.c 3 | /bug928-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug932/.gitignore: -------------------------------------------------------------------------------- 1 | /bug932 2 | /bug932.c 3 | /bug932-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug939/.gitignore: -------------------------------------------------------------------------------- 1 | /bug939 2 | /bug939.c 3 | /bug939-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug940/.gitignore: -------------------------------------------------------------------------------- 1 | /bug940 2 | /bug940.c 3 | /bug940-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug941/.gitignore: -------------------------------------------------------------------------------- 1 | /bug941 2 | /bug941.c 3 | /bug941-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug944/.gitignore: -------------------------------------------------------------------------------- 1 | /bug944 2 | /bug944.c 3 | /bug944-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug948/.gitignore: -------------------------------------------------------------------------------- 1 | /bug948 2 | /bug948.c 3 | /bug948-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954 2 | /bug954.c 3 | /bug954-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954a/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954a 2 | /bug954a.c 3 | /bug954a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954a/bug954a.as: -------------------------------------------------------------------------------- 1 | #assert CA 2 | #assert C1 3 | #include "ralhex.as" 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954a/bug954a.ref: -------------------------------------------------------------------------------- 1 | X==ralhex 2 | Y==list(22, 7, 67) 3 | !ralhex!list(22, 7, 67)! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954b/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954b 2 | /bug954b.c 3 | /bug954b-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954b/bug954b.as: -------------------------------------------------------------------------------- 1 | #assert CA 2 | #assert C2 3 | #include "../bug954a/ralhex.as" 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954b/bug954b.ref: -------------------------------------------------------------------------------- 1 | X==ralhex 2 | Y==list(22, 7, 67) 3 | !ralhex!list(22, 7, 67)! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954c/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954c 2 | /bug954c.c 3 | /bug954c-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954c/bug954c.as: -------------------------------------------------------------------------------- 1 | #assert CA 2 | #assert C3 3 | #include "../bug954a/ralhex.as" 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954c/bug954c.ref: -------------------------------------------------------------------------------- 1 | X==ralhex 2 | Y==list(22, 7, 67) 3 | !ralhex!list(22, 7, 67)! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954d/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954d 2 | /bug954d.c 3 | /bug954d-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954d/bug954d.as: -------------------------------------------------------------------------------- 1 | #assert CB 2 | #assert C1 3 | #include "../bug954a/ralhex.as" 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954d/bug954d.ref: -------------------------------------------------------------------------------- 1 | X==ralhex 2 | Y==list(22, 7, 67) 3 | !ralhex!list(22, 7, 67)! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954e/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954e 2 | /bug954e.c 3 | /bug954e-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954e/bug954e.as: -------------------------------------------------------------------------------- 1 | #assert CB 2 | #assert C2 3 | #include "../bug954a/ralhex.as" 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954e/bug954e.ref: -------------------------------------------------------------------------------- 1 | X==ralhex 2 | Y==list(22, 7, 67) 3 | !ralhex!list(22, 7, 67)! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954f/.gitignore: -------------------------------------------------------------------------------- 1 | /bug954f 2 | /bug954f.c 3 | /bug954f-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954f/bug954f.as: -------------------------------------------------------------------------------- 1 | #assert CB 2 | #assert C3 3 | #include "../bug954a/ralhex.as" 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug954f/bug954f.ref: -------------------------------------------------------------------------------- 1 | X==ralhex 2 | Y==list(22, 7, 67) 3 | !ralhex!list(22, 7, 67)! 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug958/.gitignore: -------------------------------------------------------------------------------- 1 | /bug958 2 | /bug958.c 3 | /bug958-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug958/bug958.ref: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug965/.gitignore: -------------------------------------------------------------------------------- 1 | /bug965 2 | /bug965.c 3 | /bug965-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug966/.gitignore: -------------------------------------------------------------------------------- 1 | /bug966 2 | /bug966.c 3 | /bug966-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug969/.gitignore: -------------------------------------------------------------------------------- 1 | /bug969 2 | /bug969.c 3 | /bug969-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug969/bug969.ref: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug993/.gitignore: -------------------------------------------------------------------------------- 1 | /bug993 2 | /bug993.c 3 | /bug993-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug993/bug993.ref: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | false 4 | true 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug994/.gitignore: -------------------------------------------------------------------------------- 1 | /bug994 2 | /bug994.c 3 | /bug994-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/bug994/bug994.ref: -------------------------------------------------------------------------------- 1 | scanned integer is: 3 2 | new buffer pos is: 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/builtin0/.gitignore: -------------------------------------------------------------------------------- 1 | /builtin0 2 | /builtin0.c 3 | /builtin0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/builtin1/.gitignore: -------------------------------------------------------------------------------- 1 | /builtin1 2 | /builtin1.c 3 | /builtin1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/builtin1/builtin1.ref: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade0/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade0 2 | /cascade0.c 3 | /cascade0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade0/cascade0.ref: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade1/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade1 2 | /cascade1.c 3 | /cascade1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade1/cascade1.ref: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade2/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade2 2 | /cascade2.c 3 | /cascade2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade2/cascade2.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade3/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade3 2 | /cascade3.c 3 | /cascade3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade3/cascade3.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade4/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade4 2 | /cascade4.c 3 | /cascade4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade4/cascade4.ref: -------------------------------------------------------------------------------- 1 | list(array(1, 2, 3), array(4, 5, 6), array(7, 8, 9)) 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade5/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade5 2 | /cascade5.c 3 | /cascade5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade6/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade6 2 | /cascade6.c 3 | /cascade6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cascade7/.gitignore: -------------------------------------------------------------------------------- 1 | /cascade7 2 | /cascade7.c 3 | /cascade7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/catdef0/.gitignore: -------------------------------------------------------------------------------- 1 | /catdef0 2 | /catdef0.c 3 | /catdef0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/catdef1/.gitignore: -------------------------------------------------------------------------------- 1 | /catdef1 2 | /catdef1.c 3 | /catdef1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/catdef3/.gitignore: -------------------------------------------------------------------------------- 1 | /catdef3 2 | /catdef3.c 3 | /catdef3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/closure0/.gitignore: -------------------------------------------------------------------------------- 1 | /closure0 2 | /closure0.c 3 | /closure0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/closure0/closure0.ref: -------------------------------------------------------------------------------- 1 | Hello: 1 2 | Hello: 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/closure1/.gitignore: -------------------------------------------------------------------------------- 1 | /closure1 2 | /closure1.c 3 | /closure1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/closure1/closure1.ref: -------------------------------------------------------------------------------- 1 | Hello: 1 2 | Hello: 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/coerce/.gitignore: -------------------------------------------------------------------------------- 1 | /coerce 2 | /coerce.c 3 | /coerce-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/coerce0/.gitignore: -------------------------------------------------------------------------------- 1 | /coerce0 2 | /coerce0.c 3 | /coerce0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/collect0/.gitignore: -------------------------------------------------------------------------------- 1 | /collect0 2 | /collect0.c 3 | /collect0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/collect0/collect0.ref: -------------------------------------------------------------------------------- 1 | 16 25 36 49 64 81 100 2 | 55 3 | 2989 4 | 3025 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/collect1/.gitignore: -------------------------------------------------------------------------------- 1 | /collect1 2 | /collect1.c 3 | /collect1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/complex/.gitignore: -------------------------------------------------------------------------------- 1 | /complex 2 | /complex.c 3 | /complex-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/condapply1/.gitignore: -------------------------------------------------------------------------------- 1 | /condapply1 2 | /condapply1.c 3 | /condapply1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/condapply2/.gitignore: -------------------------------------------------------------------------------- 1 | /condapply2 2 | /condapply2.c 3 | /condapply2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/condapply2/condapply2.ref: -------------------------------------------------------------------------------- 1 | foo(42) = 84 2 | foo("very bad bug") = "very bad bug" 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const0/.gitignore: -------------------------------------------------------------------------------- 1 | /const0 2 | /const0.c 3 | /const0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const0/const0.ref: -------------------------------------------------------------------------------- 1 | pi**2 = 9.8695877281 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const1/.gitignore: -------------------------------------------------------------------------------- 1 | /const1 2 | /const1.c 3 | /const1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const1/const1.ref: -------------------------------------------------------------------------------- 1 | pi**2 = 9.8695877281 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const2/.gitignore: -------------------------------------------------------------------------------- 1 | /const2 2 | /const2.c 3 | /const2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const2/const2.ref: -------------------------------------------------------------------------------- 1 | pi**2 = 9.8695877281 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const3/.gitignore: -------------------------------------------------------------------------------- 1 | /const3 2 | /const3.c 3 | /const3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const3/const3.ref: -------------------------------------------------------------------------------- 1 | pi**2 = 9.8695877281 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const4/.gitignore: -------------------------------------------------------------------------------- 1 | /const4 2 | /const4.c 3 | /const4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const4/const4.ref: -------------------------------------------------------------------------------- 1 | pi**2 = 9.8695877281 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const5/.gitignore: -------------------------------------------------------------------------------- 1 | /const5 2 | /const5.c 3 | /const5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const5/const5.ref: -------------------------------------------------------------------------------- 1 | pi**2 = 9.8695877281 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const6/.gitignore: -------------------------------------------------------------------------------- 1 | /const6 2 | /const6.c 3 | /const6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const7/.gitignore: -------------------------------------------------------------------------------- 1 | /const7 2 | /const7.c 3 | /const7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/const8/.gitignore: -------------------------------------------------------------------------------- 1 | /const8 2 | /const8.c 3 | /const8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/cycle0/.gitignore: -------------------------------------------------------------------------------- 1 | /cycle0 2 | /cycle0.c 3 | /cycle0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/db/.gitignore: -------------------------------------------------------------------------------- 1 | /db 2 | /db.c 3 | /db-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ddata/.gitignore: -------------------------------------------------------------------------------- 1 | /ddata 2 | /ddata.c 3 | /ddata-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg0/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg0 2 | /defarg0.c 3 | /defarg0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg0/defarg0.ref: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg1/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg1 2 | /defarg1.c 3 | /defarg1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg1/defarg1.ref: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg10/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg10 2 | /defarg10.c 3 | /defarg10-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg10/defarg10.ref: -------------------------------------------------------------------------------- 1 | foo() = hey I gave a value for the argument! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg2/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg2 2 | /defarg2.c 3 | /defarg2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg2/defarg2.ref: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg3/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg3 2 | /defarg3.c 3 | /defarg3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg4/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg4 2 | /defarg4.c 3 | /defarg4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg4/defarg4.ref: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg5/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg5 2 | /defarg5.c 3 | /defarg5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg6/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg6 2 | /defarg6.c 3 | /defarg6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg6/defarg6.ref: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg7/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg7 2 | /defarg7.c 3 | /defarg7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg8/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg8 2 | /defarg8.c 3 | /defarg8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg8/defarg8.ref: -------------------------------------------------------------------------------- 1 | Hello World...!???! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg9/.gitignore: -------------------------------------------------------------------------------- 1 | /defarg9 2 | /defarg9.c 3 | /defarg9-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defarg9/defarg9.ref: -------------------------------------------------------------------------------- 1 | 5 2 | hello Doobry 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default0/.gitignore: -------------------------------------------------------------------------------- 1 | /default0 2 | /default0.c 3 | /default0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default0/default0.ref: -------------------------------------------------------------------------------- 1 | not a >> b 2 | a << b 3 | a ^= b 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default1/.gitignore: -------------------------------------------------------------------------------- 1 | /default1 2 | /default1.c 3 | /default1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default1/default1.ref: -------------------------------------------------------------------------------- 1 | not a >> b 2 | a << b 3 | a ^= b 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default2/.gitignore: -------------------------------------------------------------------------------- 1 | /default2 2 | /default2.c 3 | /default2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default2/default2.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default3/.gitignore: -------------------------------------------------------------------------------- 1 | /default3 2 | /default3.c 3 | /default3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default3/default3.ref: -------------------------------------------------------------------------------- 1 | 42 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default4/.gitignore: -------------------------------------------------------------------------------- 1 | /default4 2 | /default4.c 3 | /default4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default4/default4.ref: -------------------------------------------------------------------------------- 1 | not a >> b 2 | a << b 3 | a ^= b 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default5/.gitignore: -------------------------------------------------------------------------------- 1 | /default5 2 | /default5.c 3 | /default5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default5/default5.ref: -------------------------------------------------------------------------------- 1 | default 1 2 | default 3 3 | default 2 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default6/.gitignore: -------------------------------------------------------------------------------- 1 | /default6 2 | /default6.c 3 | /default6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default7/.gitignore: -------------------------------------------------------------------------------- 1 | /default7 2 | /default7.c 3 | /default7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default7/default7.ref: -------------------------------------------------------------------------------- 1 | 1111 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default8/.gitignore: -------------------------------------------------------------------------------- 1 | /default8 2 | /default8.c 3 | /default8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/default9/.gitignore: -------------------------------------------------------------------------------- 1 | /default9 2 | /default9.c 3 | /default9-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defgroup0/.gitignore: -------------------------------------------------------------------------------- 1 | /defgroup0 2 | /defgroup0.c 3 | /defgroup0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defgroup1/.gitignore: -------------------------------------------------------------------------------- 1 | /defgroup1 2 | /defgroup1.c 3 | /defgroup1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defgroup2/.gitignore: -------------------------------------------------------------------------------- 1 | /defgroup2 2 | /defgroup2.c 3 | /defgroup2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/defgroup3/.gitignore: -------------------------------------------------------------------------------- 1 | /defgroup3 2 | /defgroup3.c 3 | /defgroup3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend0/.gitignore: -------------------------------------------------------------------------------- 1 | /depend0 2 | /depend0.c 3 | /depend0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend1/.gitignore: -------------------------------------------------------------------------------- 1 | /depend1 2 | /depend1.c 3 | /depend1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend2/.gitignore: -------------------------------------------------------------------------------- 1 | /depend2 2 | /depend2.c 3 | /depend2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend3/.gitignore: -------------------------------------------------------------------------------- 1 | /depend3 2 | /depend3.c 3 | /depend3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend4/.gitignore: -------------------------------------------------------------------------------- 1 | /depend4 2 | /depend4.c 3 | /depend4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend5/.gitignore: -------------------------------------------------------------------------------- 1 | /depend5 2 | /depend5.c 3 | /depend5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend6/.gitignore: -------------------------------------------------------------------------------- 1 | /depend6 2 | /depend6.c 3 | /depend6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend6/depend6.ref: -------------------------------------------------------------------------------- 1 | x = 2 val = 3 2 | 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend7/.gitignore: -------------------------------------------------------------------------------- 1 | /depend7 2 | /depend7.c 3 | /depend7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend7/depend7.ref: -------------------------------------------------------------------------------- 1 | -1 2 | -1 3 | -1 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend8/.gitignore: -------------------------------------------------------------------------------- 1 | /depend8 2 | /depend8.c 3 | /depend8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/depend9/.gitignore: -------------------------------------------------------------------------------- 1 | /depend9 2 | /depend9.c 3 | /depend9-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/df1/.gitignore: -------------------------------------------------------------------------------- 1 | /df1 2 | /df1.c 3 | /df1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/dnames/.gitignore: -------------------------------------------------------------------------------- 1 | /dnames 2 | /dnames.c 3 | /dnames-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/doc0/.gitignore: -------------------------------------------------------------------------------- 1 | /doc0 2 | /doc0.c 3 | /doc0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain0/.gitignore: -------------------------------------------------------------------------------- 1 | /domain0 2 | /domain0.c 3 | /domain0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain1/.gitignore: -------------------------------------------------------------------------------- 1 | /domain1 2 | /domain1.c 3 | /domain1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain1/domain1.ref: -------------------------------------------------------------------------------- 1 | (-0.748528174936922 + 0.470142977291842 %i) 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain2/.gitignore: -------------------------------------------------------------------------------- 1 | /domain2 2 | /domain2.c 3 | /domain2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain2/domain2.ref: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain3/.gitignore: -------------------------------------------------------------------------------- 1 | /domain3 2 | /domain3.c 3 | /domain3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/domain3/domain3.ref: -------------------------------------------------------------------------------- 1 | 44 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/embed/.gitignore: -------------------------------------------------------------------------------- 1 | /embed 2 | /embed.c 3 | /embed-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/embed1/.gitignore: -------------------------------------------------------------------------------- 1 | /embed1 2 | /embed1.c 3 | /embed1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/embed1/embed1.ref: -------------------------------------------------------------------------------- 1 | Yo! 2 | (2, 6) 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/emerge0/.gitignore: -------------------------------------------------------------------------------- 1 | /emerge0 2 | /emerge0.c 3 | /emerge0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/enum0/.gitignore: -------------------------------------------------------------------------------- 1 | /enum0 2 | /enum0.c 3 | /enum0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/enum0/enum0.ref: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | true 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/enum1/.gitignore: -------------------------------------------------------------------------------- 1 | /enum1 2 | /enum1.c 3 | /enum1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/enum1/enum1.ref: -------------------------------------------------------------------------------- 1 | a 2 | a 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/error0/.gitignore: -------------------------------------------------------------------------------- 1 | /error0 2 | /error0.c 3 | /error0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/error1/.gitignore: -------------------------------------------------------------------------------- 1 | /error1 2 | /error1.c 3 | /error1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exit0/.gitignore: -------------------------------------------------------------------------------- 1 | /exit0 2 | /exit0.c 3 | /exit0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exit1/.gitignore: -------------------------------------------------------------------------------- 1 | /exit1 2 | /exit1.c 3 | /exit1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exit2/.gitignore: -------------------------------------------------------------------------------- 1 | /exit2 2 | /exit2.c 3 | /exit2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn1/.gitignore: -------------------------------------------------------------------------------- 1 | /exn1 2 | /exn1.c 3 | /exn1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn1/exn1.ref: -------------------------------------------------------------------------------- 1 | Berk 2 | Oh yeah 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn2/.gitignore: -------------------------------------------------------------------------------- 1 | /exn2 2 | /exn2.c 3 | /exn2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn3/.gitignore: -------------------------------------------------------------------------------- 1 | /exn3 2 | /exn3.c 3 | /exn3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn4/.gitignore: -------------------------------------------------------------------------------- 1 | /exn4 2 | /exn4.c 3 | /exn4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn5/.gitignore: -------------------------------------------------------------------------------- 1 | /exn5 2 | /exn5.c 3 | /exn5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exn6/.gitignore: -------------------------------------------------------------------------------- 1 | /exn6 2 | /exn6.c 3 | /exn6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/export1/.gitignore: -------------------------------------------------------------------------------- 1 | /export1 2 | /export1.c 3 | /export1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/export2/.gitignore: -------------------------------------------------------------------------------- 1 | /export2 2 | /export2.c 3 | /export2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/export3/.gitignore: -------------------------------------------------------------------------------- 1 | /export3 2 | /export3.c 3 | /export3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exptoc/.gitignore: -------------------------------------------------------------------------------- 1 | /exptoc 2 | /exptoc.c 3 | /exptoc-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/exptoc2/.gitignore: -------------------------------------------------------------------------------- 1 | /exptoc2 2 | /exptoc2.c 3 | /exptoc2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/extend0/.gitignore: -------------------------------------------------------------------------------- 1 | /extend0 2 | /extend0.c 3 | /extend0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/extend0/extend0.ref: -------------------------------------------------------------------------------- 1 | not a >> b 2 | a << b 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/extend1/.gitignore: -------------------------------------------------------------------------------- 1 | /extend1 2 | /extend1.c 3 | /extend1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/extend1/extend1.ref: -------------------------------------------------------------------------------- 1 | not a >> b 2 | a << b 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/extend2/.gitignore: -------------------------------------------------------------------------------- 1 | /extend2 2 | /extend2.c 3 | /extend2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/f11/.gitignore: -------------------------------------------------------------------------------- 1 | /f11 2 | /f11.c 3 | /f11-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/fact/.gitignore: -------------------------------------------------------------------------------- 1 | /fact 2 | /fact.c 3 | /fact-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/fix0/.gitignore: -------------------------------------------------------------------------------- 1 | /fix0 2 | /fix0.c 3 | /fix0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/fix0/fix0.ref: -------------------------------------------------------------------------------- 1 | [new list(1, 2, 3, 4) ] 2 | 4 [new list(-1, -2, -3, -4) ] 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/fix1/.gitignore: -------------------------------------------------------------------------------- 1 | /fix1 2 | /fix1.c 3 | /fix1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/float0/.gitignore: -------------------------------------------------------------------------------- 1 | /float0 2 | /float0.c 3 | /float0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/float0/float0.ref: -------------------------------------------------------------------------------- 1 | 0.999896315728952 2 | 1.23456789012346 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/float1/.gitignore: -------------------------------------------------------------------------------- 1 | /float1 2 | /float1.c 3 | /float1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/float2/.gitignore: -------------------------------------------------------------------------------- 1 | /float2 2 | /float2.c 3 | /float2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/float3/.gitignore: -------------------------------------------------------------------------------- 1 | /float3 2 | /float3.c 3 | /float3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/float4/.gitignore: -------------------------------------------------------------------------------- 1 | /float4 2 | /float4.c 3 | /float4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/flow0/.gitignore: -------------------------------------------------------------------------------- 1 | /flow0 2 | /flow0.c 3 | /flow0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/flow0/flow0.ref: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/fluid0/.gitignore: -------------------------------------------------------------------------------- 1 | /fluid0 2 | /fluid0.c 3 | /fluid0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/fluid0/fluid0.ref: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 3 4 | 4 5 | 3 hello 6 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/for0/.gitignore: -------------------------------------------------------------------------------- 1 | /for0 2 | /for0.c 3 | /for0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/format1/.gitignore: -------------------------------------------------------------------------------- 1 | /format1 2 | /format1.c 3 | /format1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/format2/.gitignore: -------------------------------------------------------------------------------- 1 | /format2 2 | /format2.c 3 | /format2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn0/.gitignore: -------------------------------------------------------------------------------- 1 | /forn0 2 | /forn0.c 3 | /forn0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn1/.gitignore: -------------------------------------------------------------------------------- 1 | /forn1 2 | /forn1.c 3 | /forn1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn1/forn1.ref: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn2/.gitignore: -------------------------------------------------------------------------------- 1 | /forn2 2 | /forn2.c 3 | /forn2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn3/.gitignore: -------------------------------------------------------------------------------- 1 | /forn3 2 | /forn3.c 3 | /forn3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn4/.gitignore: -------------------------------------------------------------------------------- 1 | /forn4 2 | /forn4.c 3 | /forn4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn5/.gitignore: -------------------------------------------------------------------------------- 1 | /forn5 2 | /forn5.c 3 | /forn5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn5o/.gitignore: -------------------------------------------------------------------------------- 1 | /forn5o 2 | /forn5o.c 3 | /forn5o-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn6/.gitignore: -------------------------------------------------------------------------------- 1 | /forn6 2 | /forn6.c 3 | /forn6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn6o/.gitignore: -------------------------------------------------------------------------------- 1 | /forn6o 2 | /forn6o.c 3 | /forn6o-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn7/.gitignore: -------------------------------------------------------------------------------- 1 | /forn7 2 | /forn7.c 3 | /forn7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn7a/.gitignore: -------------------------------------------------------------------------------- 1 | /forn7a 2 | /forn7a.c 3 | /forn7a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/forn8/.gitignore: -------------------------------------------------------------------------------- 1 | /forn8 2 | /forn8.c 3 | /forn8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct1/.gitignore: -------------------------------------------------------------------------------- 1 | /funct1 2 | /funct1.c 3 | /funct1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct2/.gitignore: -------------------------------------------------------------------------------- 1 | /funct2 2 | /funct2.c 3 | /funct2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct3/.gitignore: -------------------------------------------------------------------------------- 1 | /funct3 2 | /funct3.c 3 | /funct3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct4/.gitignore: -------------------------------------------------------------------------------- 1 | /funct4 2 | /funct4.c 3 | /funct4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct5/.gitignore: -------------------------------------------------------------------------------- 1 | /funct5 2 | /funct5.c 3 | /funct5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct6/.gitignore: -------------------------------------------------------------------------------- 1 | /funct6 2 | /funct6.c 3 | /funct6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct7/.gitignore: -------------------------------------------------------------------------------- 1 | /funct7 2 | /funct7.c 3 | /funct7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funct8/.gitignore: -------------------------------------------------------------------------------- 1 | /funct8 2 | /funct8.c 3 | /funct8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funlist1/.gitignore: -------------------------------------------------------------------------------- 1 | /funlist1 2 | /funlist1.c 3 | /funlist1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funvar/.gitignore: -------------------------------------------------------------------------------- 1 | /funvar 2 | /funvar.c 3 | /funvar-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/funvar/funvar.ref: -------------------------------------------------------------------------------- 1 | 5 = 5 2 | 5 = 5 3 | 1003 = 1003 4 | 1002 = 1002 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gc0/.gitignore: -------------------------------------------------------------------------------- 1 | /gc0 2 | /gc0.c 3 | /gc0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gen0/.gitignore: -------------------------------------------------------------------------------- 1 | /gen0 2 | /gen0.c 3 | /gen0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gen1/.gitignore: -------------------------------------------------------------------------------- 1 | /gen1 2 | /gen1.c 3 | /gen1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gen2/.gitignore: -------------------------------------------------------------------------------- 1 | /gen2 2 | /gen2.c 3 | /gen2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gen3/.gitignore: -------------------------------------------------------------------------------- 1 | /gen3 2 | /gen3.c 3 | /gen3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gen4/.gitignore: -------------------------------------------------------------------------------- 1 | /gen4 2 | /gen4.c 3 | /gen4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/genc1/.gitignore: -------------------------------------------------------------------------------- 1 | /genc1 2 | /genc1.c 3 | /genc1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/genc2/.gitignore: -------------------------------------------------------------------------------- 1 | /genc2 2 | /genc2.c 3 | /genc2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/genops/.gitignore: -------------------------------------------------------------------------------- 1 | /genops 2 | /genops.c 3 | /genops-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gfGener1/.gitignore: -------------------------------------------------------------------------------- 1 | /gfGener1 2 | /gfGener1.c 3 | /gfGener1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/gfGener2/.gitignore: -------------------------------------------------------------------------------- 1 | /gfGener2 2 | /gfGener2.c 3 | /gfGener2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/goto0/.gitignore: -------------------------------------------------------------------------------- 1 | /goto0 2 | /goto0.c 3 | /goto0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/grok/.gitignore: -------------------------------------------------------------------------------- 1 | /grok 2 | /grok.c 3 | /grok-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/halt1/.gitignore: -------------------------------------------------------------------------------- 1 | /halt1 2 | /halt1.c 3 | /halt1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/halt1/halt1.ref: -------------------------------------------------------------------------------- 1 | Goodbye world! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/has1/.gitignore: -------------------------------------------------------------------------------- 1 | /has1 2 | /has1.c 3 | /has1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/has2/.gitignore: -------------------------------------------------------------------------------- 1 | /has2 2 | /has2.c 3 | /has2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/has2/has2.ref: -------------------------------------------------------------------------------- 1 | list(list(1, 2, 3, 4), list(8, 9)) 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/hash0/.gitignore: -------------------------------------------------------------------------------- 1 | /hash0 2 | /hash0.c 3 | /hash0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/hash0/hash0.ref: -------------------------------------------------------------------------------- 1 | 4 2 | 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/hide0/.gitignore: -------------------------------------------------------------------------------- 1 | /hide0 2 | /hide0.c 3 | /hide0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/hilbert/.gitignore: -------------------------------------------------------------------------------- 1 | /hilbert 2 | /hilbert.c 3 | /hilbert-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if0/.gitignore: -------------------------------------------------------------------------------- 1 | /if0 2 | /if0.c 3 | /if0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if1/.gitignore: -------------------------------------------------------------------------------- 1 | /if1 2 | /if1.c 3 | /if1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if2/.gitignore: -------------------------------------------------------------------------------- 1 | /if2 2 | /if2.c 3 | /if2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if3/.gitignore: -------------------------------------------------------------------------------- 1 | /if3 2 | /if3.c 3 | /if3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if4/.gitignore: -------------------------------------------------------------------------------- 1 | /if4 2 | /if4.c 3 | /if4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if4/if4.ref: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/if5/.gitignore: -------------------------------------------------------------------------------- 1 | /if5 2 | /if5.c 3 | /if5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ifcross0/.gitignore: -------------------------------------------------------------------------------- 1 | /ifcross0 2 | /ifcross0.c 3 | /ifcross0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/imod0/.gitignore: -------------------------------------------------------------------------------- 1 | /imod0 2 | /imod0.c 3 | /imod0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/impl/.gitignore: -------------------------------------------------------------------------------- 1 | /impl 2 | /impl.c 3 | /impl-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/impl/impl.ref: -------------------------------------------------------------------------------- 1 | 24 2 | 24 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/incl/.gitignore: -------------------------------------------------------------------------------- 1 | /incl 2 | /incl.c 3 | /incl-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/incl/includeB.as: -------------------------------------------------------------------------------- 1 | -- Try to make a cycle. 2 | #reinclude "include2.as" 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/include0/.gitignore: -------------------------------------------------------------------------------- 1 | /include0 2 | /include0.c 3 | /include0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/include1/.gitignore: -------------------------------------------------------------------------------- 1 | /include1 2 | /include1.c 3 | /include1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/include2/.gitignore: -------------------------------------------------------------------------------- 1 | /include2 2 | /include2.c 3 | /include2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/include3/.gitignore: -------------------------------------------------------------------------------- 1 | /include3 2 | /include3.c 3 | /include3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline0/.gitignore: -------------------------------------------------------------------------------- 1 | /inline0 2 | /inline0.c 3 | /inline0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline0/inline0.ref: -------------------------------------------------------------------------------- 1 | 14 2 | 14 3 | 4 4 | 18 5 | 5832 6 | 4 7 | 7 8 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline1/.gitignore: -------------------------------------------------------------------------------- 1 | /inline1 2 | /inline1.c 3 | /inline1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline1/inline1.ref: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | 4 4 | 18 5 | 5832 6 | 4 7 | 7 8 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline2/.gitignore: -------------------------------------------------------------------------------- 1 | /inline2 2 | /inline2.c 3 | /inline2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline2/inline2.ref: -------------------------------------------------------------------------------- 1 | 1 2 | 24 3 | 1 2 3 4 4 | 2 3 4 5 | 3 4 6 | 4 7 | 81 8 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline3/.gitignore: -------------------------------------------------------------------------------- 1 | /inline3 2 | /inline3.c 3 | /inline3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline3/inline3.ref: -------------------------------------------------------------------------------- 1 | 6 2 | 10 3 | list(1, 2, 3, 4, 5) 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline4/.gitignore: -------------------------------------------------------------------------------- 1 | /inline4 2 | /inline4.c 3 | /inline4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline4/inline4.ref: -------------------------------------------------------------------------------- 1 | 1 + 2 %i 2 | 0.823529411764706 + -0.294117647058824 %i 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline5/.gitignore: -------------------------------------------------------------------------------- 1 | /inline5 2 | /inline5.c 3 | /inline5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/inline5/inline5.ref: -------------------------------------------------------------------------------- 1 | XX: 2.2 2 | 2.2 3 | 2.2 4 | 2.2 5 | 2.2 6 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/intbug1/.gitignore: -------------------------------------------------------------------------------- 1 | /intbug1 2 | /intbug1.c 3 | /intbug1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/intbug1/intbug1.ref: -------------------------------------------------------------------------------- 1 | 141112788324275542 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/junk0/.gitignore: -------------------------------------------------------------------------------- 1 | /junk0 2 | /junk0.c 3 | /junk0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ladder0/.gitignore: -------------------------------------------------------------------------------- 1 | /ladder0 2 | /ladder0.c 3 | /ladder0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/libdup0/.gitignore: -------------------------------------------------------------------------------- 1 | /libdup0 2 | /libdup0.c 3 | /libdup0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/libdup1/.gitignore: -------------------------------------------------------------------------------- 1 | /libdup1 2 | /libdup1.c 3 | /libdup1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/limits/.gitignore: -------------------------------------------------------------------------------- 1 | /limits 2 | /limits.c 3 | /limits-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/linear0/.gitignore: -------------------------------------------------------------------------------- 1 | /linear0 2 | /linear0.c 3 | /linear0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/linear1/.gitignore: -------------------------------------------------------------------------------- 1 | /linear1 2 | /linear1.c 3 | /linear1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/linear2/.gitignore: -------------------------------------------------------------------------------- 1 | /linear2 2 | /linear2.c 3 | /linear2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/linear3/.gitignore: -------------------------------------------------------------------------------- 1 | /linear3 2 | /linear3.c 3 | /linear3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/linear4/.gitignore: -------------------------------------------------------------------------------- 1 | /linear4 2 | /linear4.c 3 | /linear4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/lit0/.gitignore: -------------------------------------------------------------------------------- 1 | /lit0 2 | /lit0.c 3 | /lit0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/lit1/.gitignore: -------------------------------------------------------------------------------- 1 | /lit1 2 | /lit1.c 3 | /lit1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop0/.gitignore: -------------------------------------------------------------------------------- 1 | /loop0 2 | /loop0.c 3 | /loop0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop0/loop0.ref: -------------------------------------------------------------------------------- 1 | 81 2 | 81 3 | 81 4 | 81 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop1/.gitignore: -------------------------------------------------------------------------------- 1 | /loop1 2 | /loop1.c 3 | /loop1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop1/loop1.ref: -------------------------------------------------------------------------------- 1 | 0 1 0 2 0 5 0 1 0 10 0 1 0 3 0 1 0 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop2/.gitignore: -------------------------------------------------------------------------------- 1 | /loop2 2 | /loop2.c 3 | /loop2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop2/loop2.ref: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 4 4 | 3 5 | 4 6 | 5 7 | 4 8 | 5 9 | 6 10 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop3/.gitignore: -------------------------------------------------------------------------------- 1 | /loop3 2 | /loop3.c 3 | /loop3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/loop3/loop3.ref: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex0/.gitignore: -------------------------------------------------------------------------------- 1 | /macex0 2 | /macex0.c 3 | /macex0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex1/.gitignore: -------------------------------------------------------------------------------- 1 | /macex1 2 | /macex1.c 3 | /macex1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex2/.gitignore: -------------------------------------------------------------------------------- 1 | /macex2 2 | /macex2.c 3 | /macex2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex3/.gitignore: -------------------------------------------------------------------------------- 1 | /macex3 2 | /macex3.c 3 | /macex3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex4/.gitignore: -------------------------------------------------------------------------------- 1 | /macex4 2 | /macex4.c 3 | /macex4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex5/.gitignore: -------------------------------------------------------------------------------- 1 | /macex5 2 | /macex5.c 3 | /macex5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex6/.gitignore: -------------------------------------------------------------------------------- 1 | /macex6 2 | /macex6.c 3 | /macex6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/macex7/.gitignore: -------------------------------------------------------------------------------- 1 | /macex7 2 | /macex7.c 3 | /macex7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/mandel/.gitignore: -------------------------------------------------------------------------------- 1 | /mandel 2 | /mandel.c 3 | /mandel-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/mandel_t/.gitignore: -------------------------------------------------------------------------------- 1 | /mandel_t 2 | /mandel_t.c 3 | /mandel_t-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/mandel_t/mandel_t.ref: -------------------------------------------------------------------------------- 1 | The sum is 2221642 2 | 360000 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/missing0/.gitignore: -------------------------------------------------------------------------------- 1 | /missing0 2 | /missing0.c 3 | /missing0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/missing1/.gitignore: -------------------------------------------------------------------------------- 1 | /missing1 2 | /missing1.c 3 | /missing1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/mylist/.gitignore: -------------------------------------------------------------------------------- 1 | /mylist 2 | /mylist.c 3 | /mylist-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/none0/.gitignore: -------------------------------------------------------------------------------- 1 | /none0 2 | /none0.c 3 | /none0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/none1/.gitignore: -------------------------------------------------------------------------------- 1 | /none1 2 | /none1.c 3 | /none1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/none2/.gitignore: -------------------------------------------------------------------------------- 1 | /none2 2 | /none2.c 3 | /none2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/none2/none2.ref: -------------------------------------------------------------------------------- 1 | 6 2 | 7 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/numeral0/.gitignore: -------------------------------------------------------------------------------- 1 | /numeral0 2 | /numeral0.c 3 | /numeral0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/numeral1/.gitignore: -------------------------------------------------------------------------------- 1 | /numeral1 2 | /numeral1.c 3 | /numeral1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/numeral2/.gitignore: -------------------------------------------------------------------------------- 1 | /numeral2 2 | /numeral2.c 3 | /numeral2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/object0/.gitignore: -------------------------------------------------------------------------------- 1 | /object0 2 | /object0.c 3 | /object0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/object0/object0.ref: -------------------------------------------------------------------------------- 1 | [2][1.25][(2/3)] 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/object1/.gitignore: -------------------------------------------------------------------------------- 1 | /object1 2 | /object1.c 3 | /object1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/object1/object1.ref: -------------------------------------------------------------------------------- 1 | Test 1: [2][1.25][(2/3)] 2 | Test 2: [2][1.25][(2/3)] 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt0/.gitignore: -------------------------------------------------------------------------------- 1 | /opt0 2 | /opt0.c 3 | /opt0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt0/opt0.ref: -------------------------------------------------------------------------------- 1 | list(0, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35) 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt1/.gitignore: -------------------------------------------------------------------------------- 1 | /opt1 2 | /opt1.c 3 | /opt1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt2/.gitignore: -------------------------------------------------------------------------------- 1 | /opt2 2 | /opt2.c 3 | /opt2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt2/opt2.ref: -------------------------------------------------------------------------------- 1 | 6 / 3 = 2 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt3/.gitignore: -------------------------------------------------------------------------------- 1 | /opt3 2 | /opt3.c 3 | /opt3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/opt3/opt3.ref: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/oslowtst/.gitignore: -------------------------------------------------------------------------------- 1 | /oslowtst 2 | /oslowtst.c 3 | /oslowtst-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ovload0/.gitignore: -------------------------------------------------------------------------------- 1 | /ovload0 2 | /ovload0.c 3 | /ovload0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ovload1/.gitignore: -------------------------------------------------------------------------------- 1 | /ovload1 2 | /ovload1.c 3 | /ovload1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ovload2/.gitignore: -------------------------------------------------------------------------------- 1 | /ovload2 2 | /ovload2.c 3 | /ovload2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack0/.gitignore: -------------------------------------------------------------------------------- 1 | /pack0 2 | /pack0.c 3 | /pack0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack0/pack0.ref: -------------------------------------------------------------------------------- 1 | 6.72 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack1/.gitignore: -------------------------------------------------------------------------------- 1 | /pack1 2 | /pack1.c 3 | /pack1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack1/pack1.ref: -------------------------------------------------------------------------------- 1 | 6.72 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack2/.gitignore: -------------------------------------------------------------------------------- 1 | /pack2 2 | /pack2.c 3 | /pack2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack2/pack2.ref: -------------------------------------------------------------------------------- 1 | 6.72 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack3/.gitignore: -------------------------------------------------------------------------------- 1 | /pack3 2 | /pack3.c 3 | /pack3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pack3/pack3.ref: -------------------------------------------------------------------------------- 1 | 2 = 2 2 | array(2.4, 4.6, 6.8) 3 | array(2.4, 4.6, 6.8) 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/parse0/.gitignore: -------------------------------------------------------------------------------- 1 | /parse0 2 | /parse0.c 3 | /parse0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/parse1/.gitignore: -------------------------------------------------------------------------------- 1 | /parse1 2 | /parse1.c 3 | /parse1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/parse2/.gitignore: -------------------------------------------------------------------------------- 1 | /parse2 2 | /parse2.c 3 | /parse2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/parse3/.gitignore: -------------------------------------------------------------------------------- 1 | /parse3 2 | /parse3.c 3 | /parse3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/parse4/.gitignore: -------------------------------------------------------------------------------- 1 | /parse4 2 | /parse4.c 3 | /parse4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/pretend1/.gitignore: -------------------------------------------------------------------------------- 1 | /pretend1 2 | /pretend1.c 3 | /pretend1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/print/.gitignore: -------------------------------------------------------------------------------- 1 | /print 2 | /print.c 3 | /print-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qimport/.gitignore: -------------------------------------------------------------------------------- 1 | /qimport 2 | /qimport.c 3 | /qimport-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qimport/qimport.ref: -------------------------------------------------------------------------------- 1 | hello 2 | list(3, 2) 3 | 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qual0/.gitignore: -------------------------------------------------------------------------------- 1 | /qual0 2 | /qual0.c 3 | /qual0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qual0/qual0.ref: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qual1/.gitignore: -------------------------------------------------------------------------------- 1 | /qual1 2 | /qual1.c 3 | /qual1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qual2/.gitignore: -------------------------------------------------------------------------------- 1 | /qual2 2 | /qual2.c 3 | /qual2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/qual2/qual2.ref: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ratio0/.gitignore: -------------------------------------------------------------------------------- 1 | /ratio0 2 | /ratio0.c 3 | /ratio0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ratio0/ratio0.ref: -------------------------------------------------------------------------------- 1 | (1/2) 2 | (1/1) 3 | (5/6) 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawcomplex/.gitignore: -------------------------------------------------------------------------------- 1 | /rawcomplex 2 | /rawcomplex.c 3 | /rawcomplex-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec1/.gitignore: -------------------------------------------------------------------------------- 1 | /rawrec1 2 | /rawrec1.c 3 | /rawrec1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec1/rawrec1.ref: -------------------------------------------------------------------------------- 1 | rec.x = 42 2 | rec.y = 0.135 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec2/.gitignore: -------------------------------------------------------------------------------- 1 | /rawrec2 2 | /rawrec2.c 3 | /rawrec2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec2/rawrec2.ref: -------------------------------------------------------------------------------- 1 | rec.lo = 42 2 | rec.hi = 21 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec3/.gitignore: -------------------------------------------------------------------------------- 1 | /rawrec3 2 | /rawrec3.c 3 | /rawrec3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec3/rawrec3.ref: -------------------------------------------------------------------------------- 1 | rec.lo = 42 2 | rec.hi = 21 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec4/.gitignore: -------------------------------------------------------------------------------- 1 | /rawrec4 2 | /rawrec4.c 3 | /rawrec4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec4/rawrec4.ref: -------------------------------------------------------------------------------- 1 | rec.lo = 42 2 | rec.hi = 21 3 | rec.lo = 4.2 4 | rec.hi = 2.1 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/rawrec5/.gitignore: -------------------------------------------------------------------------------- 1 | /rawrec5 2 | /rawrec5.c 3 | /rawrec5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/reclist0/.gitignore: -------------------------------------------------------------------------------- 1 | /reclist0 2 | /reclist0.c 3 | /reclist0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/reclist1/.gitignore: -------------------------------------------------------------------------------- 1 | /reclist1 2 | /reclist1.c 3 | /reclist1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/reclist1/reclist1.ref: -------------------------------------------------------------------------------- 1 | i = 1, b = true 2 | i = 2, b = false 3 | i = 3, b = true 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/record/.gitignore: -------------------------------------------------------------------------------- 1 | /record 2 | /record.c 3 | /record-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/record0/.gitignore: -------------------------------------------------------------------------------- 1 | /record0 2 | /record0.c 3 | /record0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/record1/.gitignore: -------------------------------------------------------------------------------- 1 | /record1 2 | /record1.c 3 | /record1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/record2/.gitignore: -------------------------------------------------------------------------------- 1 | /record2 2 | /record2.c 3 | /record2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/ref0/.gitignore: -------------------------------------------------------------------------------- 1 | /ref0 2 | /ref0.c 3 | /ref0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan0/.gitignore: -------------------------------------------------------------------------------- 1 | /scan0 2 | /scan0.c 3 | /scan0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan1/.gitignore: -------------------------------------------------------------------------------- 1 | /scan1 2 | /scan1.c 3 | /scan1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan2/.gitignore: -------------------------------------------------------------------------------- 1 | /scan2 2 | /scan2.c 3 | /scan2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan3/.gitignore: -------------------------------------------------------------------------------- 1 | /scan3 2 | /scan3.c 3 | /scan3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan4/.gitignore: -------------------------------------------------------------------------------- 1 | /scan4 2 | /scan4.c 3 | /scan4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan5/.gitignore: -------------------------------------------------------------------------------- 1 | /scan5 2 | /scan5.c 3 | /scan5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scan6/.gitignore: -------------------------------------------------------------------------------- 1 | /scan6 2 | /scan6.c 3 | /scan6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind0/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind0 2 | /scobind0.c 3 | /scobind0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind1/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind1 2 | /scobind1.c 3 | /scobind1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind2/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind2 2 | /scobind2.c 3 | /scobind2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind3/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind3 2 | /scobind3.c 3 | /scobind3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind4/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind4 2 | /scobind4.c 3 | /scobind4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind4/scobind4.ref: -------------------------------------------------------------------------------- 1 | 410 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind5/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind5 2 | /scobind5.c 3 | /scobind5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind6/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind6 2 | /scobind6.c 3 | /scobind6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scobind7/.gitignore: -------------------------------------------------------------------------------- 1 | /scobind7 2 | /scobind7.c 3 | /scobind7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope0/.gitignore: -------------------------------------------------------------------------------- 1 | /scope0 2 | /scope0.c 3 | /scope0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope1/.gitignore: -------------------------------------------------------------------------------- 1 | /scope1 2 | /scope1.c 3 | /scope1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope10/.gitignore: -------------------------------------------------------------------------------- 1 | /scope10 2 | /scope10.c 3 | /scope10-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope11/.gitignore: -------------------------------------------------------------------------------- 1 | /scope11 2 | /scope11.c 3 | /scope11-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope11/scope11.ref: -------------------------------------------------------------------------------- 1 | 0.0913943867 5079240410 4 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope12/.gitignore: -------------------------------------------------------------------------------- 1 | /scope12 2 | /scope12.c 3 | /scope12-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope2/.gitignore: -------------------------------------------------------------------------------- 1 | /scope2 2 | /scope2.c 3 | /scope2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope3/.gitignore: -------------------------------------------------------------------------------- 1 | /scope3 2 | /scope3.c 3 | /scope3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope3/scope3.ref: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope5/.gitignore: -------------------------------------------------------------------------------- 1 | /scope5 2 | /scope5.c 3 | /scope5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope7/.gitignore: -------------------------------------------------------------------------------- 1 | /scope7 2 | /scope7.c 3 | /scope7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope8/.gitignore: -------------------------------------------------------------------------------- 1 | /scope8 2 | /scope8.c 3 | /scope8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/scope9/.gitignore: -------------------------------------------------------------------------------- 1 | /scope9 2 | /scope9.c 3 | /scope9-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/segext0/.gitignore: -------------------------------------------------------------------------------- 1 | /segext0 2 | /segext0.c 3 | /segext0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/segext1/.gitignore: -------------------------------------------------------------------------------- 1 | /segext1 2 | /segext1.c 3 | /segext1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/segext2/.gitignore: -------------------------------------------------------------------------------- 1 | /segext2 2 | /segext2.c 3 | /segext2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/segext3/.gitignore: -------------------------------------------------------------------------------- 1 | /segext3 2 | /segext3.c 3 | /segext3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/segext4/.gitignore: -------------------------------------------------------------------------------- 1 | /segext4 2 | /segext4.c 3 | /segext4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/segment0/.gitignore: -------------------------------------------------------------------------------- 1 | /segment0 2 | /segment0.c 3 | /segment0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/select0/.gitignore: -------------------------------------------------------------------------------- 1 | /select0 2 | /select0.c 3 | /select0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/select1/.gitignore: -------------------------------------------------------------------------------- 1 | /select1 2 | /select1.c 3 | /select1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/select1/select1.ref: -------------------------------------------------------------------------------- 1 | Zero. 2 | >> Done << 3 | One. 4 | >> Done << 5 | >> Done << 6 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/select2/.gitignore: -------------------------------------------------------------------------------- 1 | /select2 2 | /select2.c 3 | /select2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/self0/.gitignore: -------------------------------------------------------------------------------- 1 | /self0 2 | /self0.c 3 | /self0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/setBANG/.gitignore: -------------------------------------------------------------------------------- 1 | /setBANG 2 | /setBANG.c 3 | /setBANG-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/setBANG/setBANG.ref: -------------------------------------------------------------------------------- 1 | lineNo is 1 2 | lineNo is 2 3 | foo.2 is 2 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/slist/.gitignore: -------------------------------------------------------------------------------- 1 | /slist 2 | /slist.c 3 | /slist-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/srcpos/.gitignore: -------------------------------------------------------------------------------- 1 | /srcpos 2 | /srcpos.c 3 | /srcpos-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/string_t/.gitignore: -------------------------------------------------------------------------------- 1 | /string_t 2 | /string_t.c 3 | /string_t-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/supcat0/.gitignore: -------------------------------------------------------------------------------- 1 | /supcat0 2 | /supcat0.c 3 | /supcat0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/supcat1/.gitignore: -------------------------------------------------------------------------------- 1 | /supcat1 2 | /supcat1.c 3 | /supcat1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/swap/.gitignore: -------------------------------------------------------------------------------- 1 | /swap 2 | /swap.c 3 | /swap-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/swap1/.gitignore: -------------------------------------------------------------------------------- 1 | /swap1 2 | /swap1.c 3 | /swap1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1009/.gitignore: -------------------------------------------------------------------------------- 1 | /t1009 2 | /t1009.c 3 | /t1009-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1009/t1009.ref: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1024/.gitignore: -------------------------------------------------------------------------------- 1 | /t1024 2 | /t1024.c 3 | /t1024-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1025/.gitignore: -------------------------------------------------------------------------------- 1 | /t1025 2 | /t1025.c 3 | /t1025-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1028/.gitignore: -------------------------------------------------------------------------------- 1 | /t1028 2 | /t1028.c 3 | /t1028-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1029/.gitignore: -------------------------------------------------------------------------------- 1 | /t1029 2 | /t1029.c 3 | /t1029-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1029/t1029.ref: -------------------------------------------------------------------------------- 1 | a,b,c = 1551877902,1551877902,1551877902 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1053/.gitignore: -------------------------------------------------------------------------------- 1 | /t1053 2 | /t1053.c 3 | /t1053-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1053/t1053.ref: -------------------------------------------------------------------------------- 1 | foo(2) = 2 2 | foo(10) = 0 3 | foo(16) = 16 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1059/.gitignore: -------------------------------------------------------------------------------- 1 | /t1059 2 | /t1059.c 3 | /t1059-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1059/t1059.ref: -------------------------------------------------------------------------------- 1 | i = 3, e = a, j = 1 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1064/.gitignore: -------------------------------------------------------------------------------- 1 | /t1064 2 | /t1064.c 3 | /t1064-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1070a/.gitignore: -------------------------------------------------------------------------------- 1 | /t1070a 2 | /t1070a.c 3 | /t1070a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1070b/.gitignore: -------------------------------------------------------------------------------- 1 | /t1070b 2 | /t1070b.c 3 | /t1070b-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1075a/.gitignore: -------------------------------------------------------------------------------- 1 | /t1075a 2 | /t1075a.c 3 | /t1075a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1075b/.gitignore: -------------------------------------------------------------------------------- 1 | /t1075b 2 | /t1075b.c 3 | /t1075b-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1075c/.gitignore: -------------------------------------------------------------------------------- 1 | /t1075c 2 | /t1075c.c 3 | /t1075c-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1085/.gitignore: -------------------------------------------------------------------------------- 1 | /t1085 2 | /t1085.c 3 | /t1085-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1088/.gitignore: -------------------------------------------------------------------------------- 1 | /t1088 2 | /t1088.c 3 | /t1088-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1093/.gitignore: -------------------------------------------------------------------------------- 1 | /t1093 2 | /t1093.c 3 | /t1093-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1094/.gitignore: -------------------------------------------------------------------------------- 1 | /t1094 2 | /t1094.c 3 | /t1094-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1097/.gitignore: -------------------------------------------------------------------------------- 1 | /t1097 2 | /t1097.c 3 | /t1097-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1099/.gitignore: -------------------------------------------------------------------------------- 1 | /t1099 2 | /t1099.c 3 | /t1099-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1099/t1099.ref: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1105/.gitignore: -------------------------------------------------------------------------------- 1 | /t1105 2 | /t1105.c 3 | /t1105-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1106/.gitignore: -------------------------------------------------------------------------------- 1 | /t1106 2 | /t1106.c 3 | /t1106-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1106/t1106.ref: -------------------------------------------------------------------------------- 1 | foo() = ghi 2 | foo() = def 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1107a/.gitignore: -------------------------------------------------------------------------------- 1 | /t1107a 2 | /t1107a.c 3 | /t1107a-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1107b/.gitignore: -------------------------------------------------------------------------------- 1 | /t1107b 2 | /t1107b.c 3 | /t1107b-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1125/.gitignore: -------------------------------------------------------------------------------- 1 | /t1125 2 | /t1125.c 3 | /t1125-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1142/.gitignore: -------------------------------------------------------------------------------- 1 | /t1142 2 | /t1142.c 3 | /t1142-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1145/.gitignore: -------------------------------------------------------------------------------- 1 | /t1145 2 | /t1145.c 3 | /t1145-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1145/t1145.ref: -------------------------------------------------------------------------------- 1 | q = 1099511627776 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1149/.gitignore: -------------------------------------------------------------------------------- 1 | /t1149 2 | /t1149.c 3 | /t1149-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1149/t1149.ref: -------------------------------------------------------------------------------- 1 | dv(23,3) = 7 2 | dv(23,10) = 2.3 3 | 42 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1157m/.gitignore: -------------------------------------------------------------------------------- 1 | /t1157m 2 | /t1157m.c 3 | /t1157m-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1157s/.gitignore: -------------------------------------------------------------------------------- 1 | /t1157s 2 | /t1157s.c 3 | /t1157s-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1158/.gitignore: -------------------------------------------------------------------------------- 1 | /t1158 2 | /t1158.c 3 | /t1158-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t1166/.gitignore: -------------------------------------------------------------------------------- 1 | /t1166 2 | /t1166.c 3 | /t1166-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t672/.gitignore: -------------------------------------------------------------------------------- 1 | /t672 2 | /t672.c 3 | /t672-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t715/.gitignore: -------------------------------------------------------------------------------- 1 | /t715 2 | /t715.c 3 | /t715-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t897/.gitignore: -------------------------------------------------------------------------------- 1 | /t897 2 | /t897.c 3 | /t897-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t934/.gitignore: -------------------------------------------------------------------------------- 1 | /t934 2 | /t934.c 3 | /t934-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t936/.gitignore: -------------------------------------------------------------------------------- 1 | /t936 2 | /t936.c 3 | /t936-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t944/.gitignore: -------------------------------------------------------------------------------- 1 | /t944 2 | /t944.c 3 | /t944-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t944/t944.ref: -------------------------------------------------------------------------------- 1 | scanned integer is: 3 2 | new buffer pos is: 2 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t947/.gitignore: -------------------------------------------------------------------------------- 1 | /t947 2 | /t947.c 3 | /t947-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t950/.gitignore: -------------------------------------------------------------------------------- 1 | /t950 2 | /t950.c 3 | /t950-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t950/t950.ref: -------------------------------------------------------------------------------- 1 | Pkg !!!!!!!!!!!!!!!!!!!!!!!!!!!!! 2 | :::BEGIN::: 3 | :::END::: 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t958/.gitignore: -------------------------------------------------------------------------------- 1 | /t958 2 | /t958.c 3 | /t958-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t958/t958.ref: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t966/.gitignore: -------------------------------------------------------------------------------- 1 | /t966 2 | /t966.c 3 | /t966-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t967/.gitignore: -------------------------------------------------------------------------------- 1 | /t967 2 | /t967.c 3 | /t967-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t973/.gitignore: -------------------------------------------------------------------------------- 1 | /t973 2 | /t973.c 3 | /t973-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t986/.gitignore: -------------------------------------------------------------------------------- 1 | /t986 2 | /t986.c 3 | /t986-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/t986/t986.ref: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/table1/.gitignore: -------------------------------------------------------------------------------- 1 | /table1 2 | /table1.c 3 | /table1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/test0/.gitignore: -------------------------------------------------------------------------------- 1 | /test0 2 | /test0.c 3 | /test0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/test1/.gitignore: -------------------------------------------------------------------------------- 1 | /test1 2 | /test1.c 3 | /test1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/test1/test1.ref: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tinfer0/.gitignore: -------------------------------------------------------------------------------- 1 | /tinfer0 2 | /tinfer0.c 3 | /tinfer0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tinfer1/.gitignore: -------------------------------------------------------------------------------- 1 | /tinfer1 2 | /tinfer1.c 3 | /tinfer1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tinfer2/.gitignore: -------------------------------------------------------------------------------- 1 | /tinfer2 2 | /tinfer2.c 3 | /tinfer2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/topsort0/.gitignore: -------------------------------------------------------------------------------- 1 | /topsort0 2 | /topsort0.c 3 | /topsort0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/topsort1/.gitignore: -------------------------------------------------------------------------------- 1 | /topsort1 2 | /topsort1.c 3 | /topsort1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tree/.gitignore: -------------------------------------------------------------------------------- 1 | /tree 2 | /tree.c 3 | /tree-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tree1/.gitignore: -------------------------------------------------------------------------------- 1 | /tree1 2 | /tree1.c 3 | /tree1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tree2/.gitignore: -------------------------------------------------------------------------------- 1 | /tree2 2 | /tree2.c 3 | /tree2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv0/.gitignore: -------------------------------------------------------------------------------- 1 | /triv0 2 | /triv0.c 3 | /triv0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv1/.gitignore: -------------------------------------------------------------------------------- 1 | /triv1 2 | /triv1.c 3 | /triv1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv1/triv1.ref: -------------------------------------------------------------------------------- 1 | 42 Skidoo 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv3/.gitignore: -------------------------------------------------------------------------------- 1 | /triv3 2 | /triv3.c 3 | /triv3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv3/triv3.ref: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv4/.gitignore: -------------------------------------------------------------------------------- 1 | /triv4 2 | /triv4.c 3 | /triv4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv4/triv4.ref: -------------------------------------------------------------------------------- 1 | 42 Skidoo 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv5/.gitignore: -------------------------------------------------------------------------------- 1 | /triv5 2 | /triv5.c 3 | /triv5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv5/triv5.ref: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv6/.gitignore: -------------------------------------------------------------------------------- 1 | /triv6 2 | /triv6.c 3 | /triv6-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/triv6/triv6.ref: -------------------------------------------------------------------------------- 1 | ! 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/try0/.gitignore: -------------------------------------------------------------------------------- 1 | /try0 2 | /try0.c 3 | /try0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple0/.gitignore: -------------------------------------------------------------------------------- 1 | /tuple0 2 | /tuple0.c 3 | /tuple0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple0/tuple0.ref: -------------------------------------------------------------------------------- 1 | 3 2 | 4 3 | 4 4 | 3 5 | 4 6 | 5 7 | 42 8 | 12 9 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple1/.gitignore: -------------------------------------------------------------------------------- 1 | /tuple1 2 | /tuple1.c 3 | /tuple1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple1/tuple1.ref: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 0 4 | 3 5 | 1 6 | 0 7 | 0 8 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple2/.gitignore: -------------------------------------------------------------------------------- 1 | /tuple2 2 | /tuple2.c 3 | /tuple2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple3/.gitignore: -------------------------------------------------------------------------------- 1 | /tuple3 2 | /tuple3.c 3 | /tuple3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple4/.gitignore: -------------------------------------------------------------------------------- 1 | /tuple4 2 | /tuple4.c 3 | /tuple4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/tuple4/tuple4.ref: -------------------------------------------------------------------------------- 1 | OK 2 | Not 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type0/.gitignore: -------------------------------------------------------------------------------- 1 | /type0 2 | /type0.c 3 | /type0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type0/type0.ref: -------------------------------------------------------------------------------- 1 | 4 @ I = 4 2 | 2 @ R = ((2/1)/(1/1)) 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type1/.gitignore: -------------------------------------------------------------------------------- 1 | /type1 2 | /type1.c 3 | /type1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type1/type1.ref: -------------------------------------------------------------------------------- 1 | The 3 of type T1 is 3 2 | The 3 of type T2 is 3 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type2/.gitignore: -------------------------------------------------------------------------------- 1 | /type2 2 | /type2.c 3 | /type2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type3/.gitignore: -------------------------------------------------------------------------------- 1 | /type3 2 | /type3.c 3 | /type3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type4/.gitignore: -------------------------------------------------------------------------------- 1 | /type4 2 | /type4.c 3 | /type4-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type4/type4.ref: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type5/.gitignore: -------------------------------------------------------------------------------- 1 | /type5 2 | /type5.c 3 | /type5-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type5/type5.ref: -------------------------------------------------------------------------------- 1 | 4 @ I = 4 2 | 2 @ R = list() 3 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type7/.gitignore: -------------------------------------------------------------------------------- 1 | /type7 2 | /type7.c 3 | /type7-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type7/type7.ref: -------------------------------------------------------------------------------- 1 | 10 2 | 10 3 | hello 2 4 | list(a, b, c) 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/type8/.gitignore: -------------------------------------------------------------------------------- 1 | /type8 2 | /type8.c 3 | /type8-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/unbal/.gitignore: -------------------------------------------------------------------------------- 1 | /unbal 2 | /unbal.c 3 | /unbal-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/union0/.gitignore: -------------------------------------------------------------------------------- 1 | /union0 2 | /union0.c 3 | /union0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/union1/.gitignore: -------------------------------------------------------------------------------- 1 | /union1 2 | /union1.c 3 | /union1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/union1/union1.ref: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | false 4 | true 5 | 3 6 | 2.71828 7 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/union2/.gitignore: -------------------------------------------------------------------------------- 1 | /union2 2 | /union2.c 3 | /union2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/union2/union2.ref: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | U[2, 2@Integer] 4 | false 5 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/where0/.gitignore: -------------------------------------------------------------------------------- 1 | /where0 2 | /where0.c 3 | /where0-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/where1/.gitignore: -------------------------------------------------------------------------------- 1 | /where1 2 | /where1.c 3 | /where1-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/where2/.gitignore: -------------------------------------------------------------------------------- 1 | /where2 2 | /where2.c 3 | /where2-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/axllib/test/where3/.gitignore: -------------------------------------------------------------------------------- 1 | /where3 2 | /where3.c 3 | /where3-aldormain.c 4 | -------------------------------------------------------------------------------- /aldor/lib/debuglib/test/trivial.as: -------------------------------------------------------------------------------- 1 | #include "axllib" 2 | import from Integer; 3 | 1; 4 | -------------------------------------------------------------------------------- /aldor/m4/.gitignore: -------------------------------------------------------------------------------- 1 | /libtool.m4 2 | /lt*.m4 3 | -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /msvc/.gitignore: -------------------------------------------------------------------------------- 1 | Debug 2 | *.user 3 | *.suo 4 | --------------------------------------------------------------------------------