├── .gitignore ├── LICENSE.md ├── Makefile ├── README-ECCE ├── README.md ├── auto_tests ├── Makefile ├── test ├── test_ciao ├── test_wo_check └── testfiles │ ├── append.pl │ ├── liftsolve.pl │ ├── match.pl │ ├── multiple_filters.pl │ └── transpose.pl ├── bin ├── CygWin │ └── ecce.tgz ├── Linux │ └── ecce.tgz ├── Readme.txt ├── macintel │ └── ecce └── macppc │ └── ecce ├── convex_hull ├── Makefile ├── SamirGenaimCode │ ├── SizeRelations.zip │ └── polyhedra │ │ ├── Makefile │ │ ├── README │ │ ├── analyse.pl │ │ ├── cli_polyhedra.pl │ │ ├── constraints.pl │ │ ├── db.pl │ │ ├── input.pl │ │ ├── mergesort.pl │ │ ├── polyhedra.pl │ │ └── symbolic_norm.pl ├── builtin_norms.pl ├── cli_convex_analyser.pl ├── convex_analyser.pl ├── convex_hull.pl ├── convex_norm.pl └── test_input.pl ├── ecce_benchmarks ├── advisor.bm ├── advisor.bm.bor ├── advisor.bm.bsp ├── applast.bm ├── benchmarkset.bs ├── benchmarkset_slicing.bs ├── contains.kmp.bm ├── contains.lam.bm ├── depth.lam.bm ├── doubleapp.bm ├── ecce_out │ ├── advisor.bm.pro │ └── compile_bm.pl ├── ex_depth.bm ├── ex_depth.mem.bm ├── flip.bm ├── grammar.bm ├── groundunify.complex.bm ├── groundunify.simple.bm ├── imperative-solve.bm ├── liftsolve.app.bm ├── liftsolve.db1.bm ├── liftsolve.db2.bm ├── liftsolve.lmkng.bm ├── map.reduce.bm ├── map.rev.bm ├── martin │ ├── advisor.pl │ ├── advisor.pro │ ├── app.pl │ ├── applast.pl │ ├── applast.pro │ ├── calc_chtree_martin.pro │ ├── doubleapp.pl │ ├── doubleapp.pro │ ├── grammar.pl │ ├── grammar.pro │ ├── groundunify.pl │ ├── groundunify.pro │ ├── local.pl │ ├── map.pl │ ├── map.pro │ ├── match.kmp.bm │ ├── match.pl │ ├── match.pro │ ├── matchapp.pl │ ├── matchapp.pro │ ├── maxlength.pl │ ├── maxlength.pro │ ├── regexp1.pl │ ├── regexp1.pro │ ├── relative-2.pl │ ├── relative.pl │ ├── relative.pro │ ├── remove.pl │ ├── remove.pro │ ├── remove2.pl │ ├── remove2.pro │ ├── rev.pl │ ├── rev.pro │ ├── rev_acc_type.pl │ ├── rev_acc_type.pro │ ├── rotateprune.pl │ ├── rotateprune.pro │ ├── ssuply.pl │ ├── ssuply.pro │ ├── transpose.pl │ ├── transpose.pro │ ├── upto.pl │ └── upto.pro ├── match.kmp.bm ├── matchapp.bm ├── maxlength.bm ├── model_elim.bm ├── ng_unify.bm ├── ng_unify.pl ├── orig │ ├── advisor.pro │ ├── applast.pro │ ├── compile_orig.pl │ ├── contains.pro │ ├── depth.pro │ ├── doubleapp.pro │ ├── ex_depth.pro │ ├── flip.pro │ ├── grammar.pro │ ├── groundunify.pro │ ├── imperative-solve.pro │ ├── liftsolve.pro │ ├── map.pro │ ├── match.pro │ ├── matchapp.pro │ ├── maxlength.pro │ ├── model_elim.pro │ ├── partialevaluator.pro │ ├── processalgebra.pl │ ├── regexp.pro │ ├── relative.pro │ ├── remove.pro │ ├── remove2.pro │ ├── rev.pro │ ├── rev_acc_type.pro │ ├── revlast.pro │ ├── rotateprune.pro │ ├── ssuply.pro │ ├── transpose.pro │ ├── upto.pro │ └── vanilla.doubleapp.pro ├── partialevaluator.bm ├── processalgebra.bm ├── qsort_ecce.pl ├── regexp.r1.bm ├── regexp.r2.bm ├── regexp.r3.bm ├── regexp1.bm ├── relative.bm ├── remove.bm ├── remove2.bm ├── rev.bm ├── rev_acc_type.bm ├── revlast.bm ├── revlast_simple.bm ├── rotateprune.bm ├── ssuply.bm ├── time.pl ├── transpose.bm ├── upto.sum1.bm ├── upto.sum2.bm └── vanilla.doubleapp.bm ├── ecce_examples ├── Termination │ ├── queens.pl │ ├── termtest.pl │ └── times_plus.pl ├── ancestorstacks │ └── nrev.pl ├── dbaccess │ └── cycle_q4.pl ├── death.pl ├── demo │ ├── DEMO-FM-SESSION │ ├── ECCE-BERSERKER-LIST │ ├── apdtest.ecce.results │ ├── apdtest.pl │ ├── basic │ │ ├── ackermann.pl │ │ ├── append.pl │ │ ├── fribourg.truncate.pl │ │ ├── insert.pl │ │ ├── less.pl │ │ ├── match-tf.pl │ │ ├── match.pl │ │ ├── msv-test.pl │ │ ├── nrev.pl │ │ ├── nrev.xce │ │ ├── nrev.xce.dot │ │ ├── nrev.xce.ps │ │ ├── parser.pl │ │ ├── reg.pl │ │ └── slowsort.pl │ ├── bsets.pl │ ├── deforestation │ │ ├── fib_specialised │ │ ├── fibonacci.pl │ │ ├── hanoi.pl │ │ ├── inorder.pl │ │ ├── maxlen.pl │ │ ├── prodcons.pl │ │ ├── rotate-homeotest.pl │ │ ├── rotateprune.pl │ │ └── sameleaves.pl │ ├── demo_lopstr03 │ │ ├── 1_map.pl │ │ ├── itp │ │ │ ├── Mirror.thy │ │ │ ├── even_odd.pl │ │ │ ├── mirror.pl │ │ │ └── mirror.xce.pdf │ │ ├── lambdaint_new.pl │ │ ├── lambdaint_newann.pl │ │ └── petri │ │ │ ├── basicME.P │ │ │ ├── basicME.P.dot.pdf │ │ │ ├── basicME_isabelle.thy │ │ │ ├── basicME_pe.P │ │ │ ├── basicME_pe.xce.pdf │ │ │ ├── csm.P │ │ │ ├── csm_isabelle.thy │ │ │ ├── csm_pe.P │ │ │ ├── rtp_inf.pl │ │ │ ├── rtp_inf.thy │ │ │ └── rtp_inf_pe.P │ ├── diff-integrate.pl │ ├── henk │ │ ├── henkv │ │ ├── henkv-lessthan-spec │ │ ├── henkv-preinterpretation │ │ └── pre-henkv │ │ │ ├── appendlast.pl │ │ │ ├── blockpair2o.pl │ │ │ ├── blockpair3o.pl │ │ │ ├── blockpairl.pl │ │ │ ├── blockzero.pl │ │ │ ├── exp.pl │ │ │ ├── mt21.pl │ │ │ ├── multiset.pl │ │ │ ├── odd_even.pl │ │ │ ├── petri-spec.pl │ │ │ ├── petri-spec.pl.wic │ │ │ ├── petri.pl │ │ │ ├── reverselast.pl │ │ │ ├── reversenlast.pl │ │ │ ├── schedule.pl │ │ │ └── wicked_oe.pl │ ├── ho.pl │ ├── inductive_theorem_proving │ │ ├── append_last.pl │ │ ├── itp.pl │ │ ├── mirror.pl │ │ ├── mirror.pl.xce │ │ ├── mirror.pl.xce.xce │ │ ├── pairl-specialised │ │ └── pairl.pl │ ├── interpreters │ │ ├── depth.pl │ │ ├── funfirst.pro │ │ ├── groundunify │ │ ├── gupta-demo │ │ ├── gupta-demo.xce │ │ ├── gupta-demo.xce.xce │ │ ├── ic_solve.pl │ │ ├── imperative.power │ │ ├── lambda-clocksin │ │ ├── lambdaint │ │ ├── lambdaint-test3-trace │ │ ├── lambdaint-test3-trace2 │ │ ├── lift_solve │ │ ├── power4.output │ │ ├── prop-demo.pl │ │ ├── prop-demo_specialised │ │ ├── sitcalculus-otsp.pl │ │ ├── solve-test │ │ ├── solve.pl │ │ ├── type-interpreter │ │ └── type-interpreter2 │ ├── intuitionistic │ │ ├── int.spec1.pl │ │ ├── int.spec2.pl │ │ └── intuitionistic.pl │ ├── inversion │ │ ├── unpack.pl │ │ └── unsort.pl │ ├── matrix.pl │ ├── model_check │ │ ├── BPA.finkel │ │ ├── csp-simple.pl │ │ ├── csp-very-simple │ │ ├── csp.pl │ │ ├── ctl-petri │ │ ├── ctl.efunsafe.pl │ │ ├── ctl.efunsafe.xce │ │ ├── ctl.pe │ │ ├── ctl.pe.agentrue │ │ ├── ctl.petri-sema.logen │ │ ├── manufac.pe.ecce │ │ ├── petri │ │ ├── petri-meta │ │ ├── petri-meta-2 │ │ ├── petri-meta-3 │ │ ├── petri-meta-session-ack │ │ ├── petri-sema │ │ ├── petri.finkel.pe.reachable │ │ ├── petri.finkel.pe.unsafe │ │ ├── petri.manufac.pe │ │ ├── petri.pe.unsafe │ │ ├── petri.reset │ │ ├── petri.reset copy │ │ ├── petri.reset.back │ │ ├── petri2 │ │ └── simple-petri │ ├── thm.pl │ └── treematch │ │ ├── treematch │ │ ├── treematch.spec.efg │ │ └── treematch.spec.largeNeil ├── even_odd.pl ├── finkel_counter.pl ├── grandmother.pl ├── imp_int.pl ├── jones.funinterpreter ├── knows_logic.pl ├── leechinsoon.pl ├── mul_plus.pl ├── mul_plus.xce.pdf ├── mul_plus_ciao.pl ├── mymember.pl ├── nonterm.pl ├── path.pl ├── petri-nets │ ├── basicME.logen.pl │ ├── basicME.pl │ ├── clarke_mutex.P │ ├── csm.P │ ├── csm.pl │ ├── ctl.P │ ├── dekker.P │ ├── dekker.pl │ ├── efm.pl │ ├── fms.pl │ ├── lamport.pl │ ├── multipoll.pl │ ├── peterson.pl │ ├── read-write.pl │ ├── rtp.pl │ ├── rw.pl │ └── xsb_model_check.P ├── prop_int_neg.pl ├── rultest.even_odd.pl ├── rultest.lopstr01.pl ├── rultest.process.pl ├── rultest.process2.pl ├── rultest.process3.pl ├── rultest.process_sync.pl ├── rultest.test4.pl ├── rultest.unsafe.pl ├── rultests.pl ├── sat_codish │ ├── Makefile │ ├── sum_128_16_po.pl │ ├── sum_128_32_po.pl │ ├── sum_128_64_po.pl │ ├── sum_256_16_po.pl │ └── sum_32_8_po.pl ├── sharing_test.pl ├── simplify.pl ├── slicing │ ├── SomeComments.txt │ ├── applen.pl │ ├── ctl_trace.pl │ ├── ctl_trace.slice │ └── mapfilter.pl ├── solve_offline_online.pl ├── verification.clpfd.pl ├── verysimple.pl └── verysimple2.pl ├── ecce_source ├── JavaPrologFlag.class ├── JavaPrologFlag.java ├── Makefile ├── abstract │ ├── abstract.clpfd.pl │ ├── abstract.common.pl │ ├── abstract.conjsplit-contig.pl │ ├── abstract.conjsplit-termsize.pl │ ├── abstract.conjsplit-tszcntig.pl │ ├── abstract.conjsplit.pl │ ├── abstract.eco.pl │ ├── abstract.msg.pl │ ├── abstract.msgchtree.pl │ ├── abstract.naivemsg.pl │ ├── abstract.pl │ ├── abstract.precisemsgchtree.pl │ ├── abstract.rul-conjcntg.pl │ ├── abstract.rul-std.pl │ └── abstract.rul.pl ├── abstractpd │ ├── apd_new.pl │ ├── calc_chtree_pd.pl │ └── flow_analysis.pl ├── benchmark.pl ├── bimtools.pl ├── bimtools │ ├── Environments.pl │ ├── Type_Grammars.pl │ ├── bd_findall.pl │ ├── ciao_specific.pl │ ├── claus_database.pl │ ├── compile.pl │ ├── debugging.pl │ ├── env_unify.oldbim.pl │ ├── functions.pl │ ├── gensym.pl │ ├── hash.pl │ ├── html_output.pl │ ├── instance.pl │ ├── makeflat.pl │ ├── makeiff.defs.pl │ ├── makeiff.pl │ ├── msg.pl │ ├── prepost.nocheck.pl │ ├── prepost.pl │ ├── prepost.withcheck.pl │ ├── sicstus_specific.pl │ ├── stdlists.pl │ ├── test.pl │ ├── typechecker.pl │ └── unify.pl ├── bottomUp │ ├── ErrorReports │ │ ├── 1.txt │ │ ├── 2.txt │ │ └── 3.txt │ ├── adhoc_bup.pl │ ├── bakup_23_Jan.02.ZIP │ ├── bottomUp.pl │ ├── johnsTool.pl │ ├── scanBUfile.pl │ ├── test.pl │ └── toDo.txt ├── c ├── calc_chtree.pl ├── changes ├── check_instance_of │ ├── check_instance_of.clpfd.pl │ ├── check_instance_of.instance.pl │ ├── check_instance_of.instchtr.pl │ ├── check_instance_of.karp.pl │ ├── check_instance_of.pl │ ├── check_instance_of.rul.pl │ └── check_instance_of.variant.pl ├── chtree_tools.pl ├── code_generator.pl ├── code_generator_isabelle.pl ├── constraints.pl ├── constraints │ └── constraints_clpfd.pl ├── dead_code_elimination.pl ├── depth_bound.pl ├── determinate_post_unfold.pl ├── dot_generator.pl ├── dynpreds.pl ├── ecce_bim.pl ├── ecce_ciao.pl ├── ecce_ciao_entry.pl ├── ecce_cli.pl ├── ecce_compile.pl ├── ecce_cs.tar.gz ├── ecce_main.pl ├── ecce_no_rt.pl ├── ecce_no_rt2.pl ├── ecce_no_rt_mod.pl ├── ecce_sicstus.pl ├── ecce_tcltk.pl ├── ecce_tcltk.tcl ├── front_end.pl ├── german-ecce-ciao-test ├── german-ecce-sicstus-test ├── global_tree.pl ├── homeomorphic.pl ├── ic_gen.pl ├── icons │ └── ecce_logo.gif ├── index_tools.pl ├── japro.dll ├── japro.pl ├── main_functions.pl ├── modes.pl ├── more_specific │ ├── more_specific.clpfd.pl │ ├── more_specific.conj-msv.pl │ ├── more_specific.envunify.pl │ ├── more_specific.functionality.pl │ ├── more_specific.none.pl │ ├── more_specific.pl │ ├── more_specific.rul.pl │ ├── more_specific.simple-msv.pl │ ├── more_specific.simple.pl │ └── mst.pl ├── msv_analysis.pl ├── multi_meta.pl ├── neg_solve │ ├── neg_solve.always.pl │ ├── neg_solve.any.pl │ ├── neg_solve.ground.pl │ ├── neg_solve.none.pl │ └── neg_solve.pl ├── options_ciao ├── parameters.pl ├── parametric_files.pl ├── partition │ ├── partition.clpfd.pl │ ├── partition.common.pl │ ├── partition.conjnobi.pl │ ├── partition.conjunctivepd.pl │ ├── partition.contig-bi.pl │ ├── partition.contig.pl │ ├── partition.naive.pl │ ├── partition.pl │ ├── partition.rul-std.pl │ ├── partition.rul.pl │ ├── partition.standardpd.pl │ ├── partition.static-contig.pl │ ├── partition.staticconjnobi.pl │ └── partition.staticcontig-mdes.pl ├── post_processor.pl ├── postprune │ ├── post_prune.common.pl │ ├── post_prune.det-indexed.pl │ ├── post_prune.det.pl │ ├── post_prune.detidx.minleaves.pl │ ├── post_prune.min-nonv-leaves.pl │ ├── post_prune.minleaves.detidx.pl │ ├── post_prune.minleaves.pl │ ├── post_prune.mixtus.pl │ ├── post_prune.no-duplication.pl │ ├── post_prune.none.pl │ └── post_prune.pl ├── prb │ ├── a.pl │ ├── b │ │ ├── b.pl │ │ └── c.pl │ ├── bench.pl │ ├── m.pl │ ├── m1.pl │ └── m2.pl ├── raf_analysis.pl ├── rul │ ├── ErrorReports │ │ ├── 00.txt │ │ ├── 01.txt │ │ ├── 02.txt │ │ ├── 03.txt │ │ ├── 04.txt │ │ ├── 05.txt │ │ ├── 06.txt │ │ ├── 07.txt │ │ ├── 08.txt │ │ ├── 09.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 34.txt │ │ ├── 35.txt │ │ ├── 36.txt │ │ ├── 37.txt │ │ ├── 38.txt │ │ ├── 39.txt │ │ ├── 40.txt │ │ ├── 41.txt │ │ ├── 42.txt │ │ ├── old.txt │ │ └── readMe.txt │ ├── INTERFACE.pl │ ├── Test │ │ ├── howToTest.txt │ │ ├── readMe │ │ ├── rultest.pl │ │ └── rultest.test5.result │ ├── TestFiles │ │ ├── csp.rultest.pl │ │ ├── revacc.rultest.pl │ │ └── rultest.pl │ ├── analyticFold.pl │ ├── auxil.pl │ ├── bakup_08_Oct.01.ZIP │ ├── bakup_09_Apr.02.ZIP │ ├── bakup_09_Nov.01.ZIP │ ├── bakup_23_Jan.02.ZIP │ ├── compressor.pl │ ├── domCallDepend.pl │ ├── ecceRUL.pl │ ├── gensym2.pl │ ├── instance_entails.pl │ ├── interSection.pl │ ├── msg2.pl │ ├── prePostCon.pl │ ├── proSiNo.pl │ ├── progSetOp.pl │ ├── self_check_rul.pl │ ├── shorten.pl │ ├── subType.pl │ ├── toDo.txt │ ├── unfold2.pl │ └── upperBound.pl ├── run-mecce-sicstus ├── s ├── selectionrule │ ├── selectionrule.1nondet.pl │ ├── selectionrule.1nondet.unsfe.pl │ ├── selectionrule.any-det-facts.pl │ ├── selectionrule.any-det.pl │ ├── selectionrule.common.pl │ ├── selectionrule.det-and-once.pl │ ├── selectionrule.det-bot-top.pl │ ├── selectionrule.det.pl │ ├── selectionrule.detbihomo.pl │ ├── selectionrule.dethomo-idx.pl │ ├── selectionrule.dethomo.pl │ ├── selectionrule.detunsafehomo.pl │ ├── selectionrule.homo-leftmost.pl │ ├── selectionrule.homo-pure.pl │ ├── selectionrule.homo.pl │ ├── selectionrule.mixtus-det.pl │ ├── selectionrule.mixtus.pl │ ├── selectionrule.once.pl │ ├── selectionrule.pl │ ├── selectionrule.predonce.pl │ ├── selectionrule.safedet.pl │ ├── selectionrule.sdr.pl │ └── selectionrule.term-det.pl ├── self_check.pl ├── sicstus_expansion.pl ├── static_conjunction.pl ├── static_dynamic_functors.pl ├── statistics.pl ├── unfold_helper.pl ├── unfold_history.pl ├── usage.txt ├── whistle │ ├── whistle.atomhomo.pl │ ├── whistle.chconj-termsize-unpruned.pl │ ├── whistle.chconj-termsize.pl │ ├── whistle.chconjhomo-pf.pl │ ├── whistle.chconjhomo.pl │ ├── whistle.common.pl │ ├── whistle.conj-termsize.pl │ ├── whistle.conj.pl │ ├── whistle.conjhomo.pl │ ├── whistle.eco.pl │ ├── whistle.finkel.pl │ ├── whistle.homo.pl │ ├── whistle.karp.pl │ ├── whistle.none.pl │ ├── whistle.notmoregeneral.pl │ ├── whistle.oneversion.pl │ ├── whistle.pl │ ├── whistle.set.homo.pl │ └── whistle.setnotmoregeneral.pl └── xecce.pl ├── nmecce.php ├── nmecce_debug.php ├── pl_out.php ├── rul_source ├── Makefile ├── app.pl └── newreg_cli.pl ├── tests ├── append_rev.pl ├── run_tests.csh └── tmp.pl └── www ├── CiaoDE ├── CIAODESETTINGS.itf ├── CIAODESETTINGS.pl ├── CIAODESETTINGS.po ├── CIAODESHARED.itf ├── CIAODESHARED.pl ├── CIAODESHARED.po ├── GPL ├── LGPL ├── Makefile ├── Makefile.itf ├── Makefile.pl ├── Makefile.po ├── README ├── bin │ ├── NODISTRIBUTE │ ├── ciao │ ├── ciao-1.13 │ ├── ciao-shell │ ├── ciao-shell-1.13 │ ├── ciao_get_arch │ ├── ciao_get_arch-1.13 │ ├── ciaoc │ ├── ciaoc-1.13 │ ├── ciaopp │ ├── ciaopp-1.0 │ ├── ciaopp-1.2 │ ├── ciaoppcl │ ├── ciaoppcl-1.2 │ ├── ciaosh │ ├── ciaosh-1.13 │ ├── cleandirs │ ├── cleandirs-1.13 │ ├── compiler_output │ ├── compiler_output-1.13 │ ├── config_source_components │ ├── fileinfo │ ├── fileinfo-1.13 │ ├── get_deps │ ├── get_deps-1.13 │ ├── lpdoc │ ├── lpdoc-2.0 │ ├── lpmake │ ├── lpmake-1.13 │ ├── lpmake.sta │ ├── pldiff │ ├── pldiff-1.13 │ ├── prolog │ ├── show_asr │ ├── show_asr-1.13 │ ├── synch_actions │ ├── synch_actions-1.13 │ ├── viewpo │ └── viewpo-1.13 └── ciao │ ├── CIAOSETTINGS.itf │ ├── CIAOSETTINGS.pl │ ├── CIAOSETTINGS.po │ ├── CIAOSHARED.itf │ ├── CIAOSHARED.pl │ ├── CIAOSHARED.po │ ├── COPYRIGHT │ ├── Makefile │ ├── Makefile.bak │ ├── Makefile.itf │ ├── Makefile.pl │ ├── Makefile.po │ ├── SETTINGS │ ├── SETTINGS.old │ ├── SETTINGS_AUTO │ ├── SETTINGS_DEFAULT │ ├── SHARED │ ├── Win32 │ ├── Makefile │ ├── bat_skel │ ├── bin │ │ ├── NODISTRIBUTE │ │ └── README │ ├── ciaoasr.ico │ ├── ciaoexe.ico │ ├── ciaoitf.ico │ ├── ciaopl.ico │ ├── ciaopo.ico │ ├── ciaoscrt.ico │ ├── registry.pl │ ├── setup_bat.pl │ ├── utilities.pl │ └── wsetup.pl │ ├── benchmark │ ├── Antonio │ │ ├── FinalMessage │ │ ├── TIMINGS │ │ ├── WamCode │ │ │ ├── wave2-1.7.wam │ │ │ ├── wave2-1.9.wam │ │ │ ├── yhat-1.9-back.wam │ │ │ └── yhat.pl │ │ ├── check_arrays.pl │ │ ├── test.pl │ │ ├── upd_arrays.pl │ │ ├── upd_arrays.pl.bak │ │ ├── upd_arrays_log2.pl │ │ ├── upd_vectors.pl │ │ ├── wave-bart.pl │ │ ├── wave-original.pl │ │ ├── wave.pl │ │ ├── wave2-arrays.pl │ │ ├── wave2-original.pl │ │ ├── wave2-paco.pl │ │ ├── wave2-upd-arrays.pl │ │ ├── wave2-upd-vectors.pl │ │ ├── wave2-writeonce-arrays.pl │ │ ├── wave2-writeonce-vectors.pl │ │ └── wave2.pl │ ├── NODISTRIBUTE │ ├── concurrency │ │ ├── Log │ │ ├── Makefile │ │ ├── and_prolog.pl │ │ ├── assert_and_retract_speed.pl │ │ ├── bug.pl │ │ ├── c_assert.pl │ │ ├── ciao-session │ │ ├── conc.pl │ │ ├── demo.pl │ │ ├── one.pl │ │ ├── prod_cons.pl │ │ ├── quadratic_sumlist.pl │ │ ├── rfs.pl │ │ ├── simple_and_prolog.pl │ │ ├── six.pl │ │ ├── test_conc.pl │ │ ├── three.pl │ │ ├── two.pl │ │ └── wts.pl │ ├── data │ │ ├── DATA │ │ └── test_data.pl │ ├── directives │ │ ├── dyn.pl │ │ ├── dynmain.pl │ │ ├── init.pl │ │ ├── multi1.pl │ │ ├── multi2.pl │ │ ├── mymain.pl │ │ └── p.pl │ ├── loading │ │ ├── foo.pl │ │ └── pepe.pl │ ├── modules │ │ ├── builtin.pl │ │ ├── directives.pl │ │ ├── fi.pl │ │ ├── foo.pl │ │ ├── foo1.pl │ │ ├── foo2.pl │ │ ├── foofoo.pl │ │ ├── hw.pl │ │ ├── length.pl │ │ ├── main.pl │ │ ├── meta.pl │ │ ├── meta_call.pl │ │ ├── mycall1.pl │ │ ├── nr.pl │ │ ├── p.pl │ │ ├── paco.pl │ │ ├── pepe.pl │ │ ├── q.pl │ │ ├── redefine.pl │ │ └── utilities.pl │ ├── qexec │ │ ├── call.pl │ │ ├── error.pl │ │ ├── fail.pl │ │ ├── hw.pl │ │ ├── hw_lib.pl │ │ ├── hw_lib_module.pl │ │ ├── hw_main.pl │ │ ├── hw_module.pl │ │ └── loop.pl │ ├── so │ │ ├── ciaod.pl │ │ └── sock.pl │ └── suite │ │ ├── Makefile │ │ ├── TIME │ │ ├── TIMINGS-NO-CHECKS │ │ ├── bn.pl │ │ ├── fib.pl │ │ ├── guardians.pl │ │ ├── hw.pl │ │ ├── jugs.pl │ │ ├── mundo │ │ ├── robot.pl │ │ ├── speed.pl │ │ ├── suite.pl │ │ ├── t.pl │ │ ├── trie.pl │ │ ├── upd_arrays.pl │ │ ├── wave-original.pl │ │ ├── wave2-original.pl │ │ ├── wave2-upd-arrays.pl │ │ ├── witt.pl │ │ └── wumpus.pl │ ├── bin │ ├── LINUXi86 │ │ ├── ENG_defs.h │ │ ├── M_time.c │ │ ├── M_time.h │ │ ├── Makefile │ │ ├── Win32Threads.h │ │ ├── access.h │ │ ├── addmodules.c │ │ ├── alloc.c │ │ ├── alloc.h │ │ ├── alloc.o │ │ ├── alloc_defs.h │ │ ├── attr.c │ │ ├── attr.o │ │ ├── attr_defs.h │ │ ├── bignum.c │ │ ├── bignum.o │ │ ├── bignum_defs.h │ │ ├── builtin.c │ │ ├── builtin.o │ │ ├── builtin_defs.h │ │ ├── ciao.c │ │ ├── ciao.h │ │ ├── ciao.o │ │ ├── ciao_gluecode.h │ │ ├── ciao_prolog.c │ │ ├── ciao_prolog.h │ │ ├── ciao_prolog.o │ │ ├── ciaoengine │ │ ├── ciaoengine.pl │ │ ├── ciaoengine.sta │ │ ├── common_headers.h │ │ ├── compat.h │ │ ├── configure │ │ ├── configure.c │ │ ├── configure.h │ │ ├── datadefs.h │ │ ├── debug.h │ │ ├── dynlink.c │ │ ├── dynlink.o │ │ ├── dynlink_defs.h │ │ ├── fix_path.h │ │ ├── flinkage.c │ │ ├── float_consts.c │ │ ├── float_consts.h │ │ ├── float_consts.o │ │ ├── float_tostr.c │ │ ├── float_tostr.h │ │ ├── float_tostr.o │ │ ├── format.c │ │ ├── format.o │ │ ├── format_defs.h │ │ ├── gauge.c │ │ ├── gauge.o │ │ ├── gauge_defs.h │ │ ├── gcdatadefs.h │ │ ├── gcsupport.h │ │ ├── heapgc.c │ │ ├── heapgc.o │ │ ├── heapgc_defs.h │ │ ├── indexing.c │ │ ├── indexing.o │ │ ├── indexing_defs.h │ │ ├── initial.c │ │ ├── initial.h │ │ ├── initial.o │ │ ├── initial_defs.h │ │ ├── inout.c │ │ ├── inout.o │ │ ├── inout_defs.h │ │ ├── instrdefs.h │ │ ├── interrupt.c │ │ ├── interrupt.o │ │ ├── interrupt_defs.h │ │ ├── locks.c │ │ ├── locks.h │ │ ├── locks.o │ │ ├── locks_defs.h │ │ ├── main.c │ │ ├── main.h │ │ ├── main.o │ │ ├── main_defs.h │ │ ├── main_exec.c │ │ ├── metaengine.pl │ │ ├── misc.c │ │ ├── misc.o │ │ ├── misc_defs.h │ │ ├── nondet.c │ │ ├── nondet.o │ │ ├── nondet_defs.h │ │ ├── objareas.c │ │ ├── objareas.h │ │ ├── objareas.o │ │ ├── objareas_defs.h │ │ ├── own_malloc_bin.c │ │ ├── own_malloc_defs.h │ │ ├── own_malloc_linear.c │ │ ├── own_malloc_linear.o │ │ ├── predtyp.h │ │ ├── profile_defs.h │ │ ├── prolog_tasks.c │ │ ├── prolog_tasks.o │ │ ├── prolog_tasks_defs.h │ │ ├── qget.c │ │ ├── qget.o │ │ ├── qget_defs.h │ │ ├── qinsert.c │ │ ├── qinsert_defs.h │ │ ├── qinstrdefs.h │ │ ├── qread.c │ │ ├── qread.o │ │ ├── qread_defs.h │ │ ├── random.o │ │ ├── registers.c │ │ ├── registers.h │ │ ├── registers.o │ │ ├── sockets_c.o │ │ ├── stacks.c │ │ ├── stacks.o │ │ ├── stacks_defs.h │ │ ├── start.c │ │ ├── start.o │ │ ├── start_defs.h │ │ ├── startgoal.c │ │ ├── startgoal.o │ │ ├── startgoal_defs.h │ │ ├── streams.c │ │ ├── streams.o │ │ ├── streams_defs.h │ │ ├── support.c │ │ ├── support.h │ │ ├── support.o │ │ ├── support_defs.h │ │ ├── task_areas.h │ │ ├── tasks.c │ │ ├── tasks.o │ │ ├── tasks_defs.h │ │ ├── term_support.c │ │ ├── term_support.o │ │ ├── term_support_defs.h │ │ ├── termdefs.h │ │ ├── threads.h │ │ ├── timing.c │ │ ├── timing.o │ │ ├── timing_defs.h │ │ ├── unix_utils.c │ │ ├── unix_utils.o │ │ ├── unix_utils_defs.h │ │ ├── version.c │ │ ├── version.o │ │ ├── wam.c │ │ ├── wam.h │ │ ├── wam.o │ │ ├── wam_defs.h │ │ ├── wambuiltin.c │ │ ├── wambuiltin.h │ │ ├── wambuiltin.o │ │ ├── wambuiltin_defs.h │ │ ├── wamfunction.c │ │ ├── wamfunction.h │ │ ├── wamfunction.o │ │ ├── wamfunction_defs.h │ │ ├── wamread.c │ │ ├── wamsupport.c │ │ ├── wamsupport.o │ │ ├── wamsupport_defs.h │ │ └── wamwrite.c │ ├── NODISTRIBUTE │ ├── ciaoengine │ └── ciaoengine.LINUXi86 │ ├── bootstrap │ └── ciaoc.sta │ ├── bugs │ ├── Fixed │ │ ├── SAGE │ │ │ ├── sage-context │ │ │ │ └── context.tar.gz │ │ │ ├── sage-large │ │ │ │ ├── concept_db_8.pl.gz │ │ │ │ └── test.pl │ │ │ ├── sage-wn_s │ │ │ │ └── wn_s.pl.gz │ │ │ └── sage │ │ │ │ ├── aso_asociacion.pl │ │ │ │ ├── con_concepto.pl │ │ │ │ ├── convert.pl │ │ │ │ ├── datos.pl │ │ │ │ ├── def_elemento.pl │ │ │ │ ├── ele_elemento.pl │ │ │ │ ├── entry.pl │ │ │ │ ├── process.pl │ │ │ │ └── val_valor.pl │ │ ├── abort_bug │ │ │ └── script │ │ ├── amosbug │ │ │ ├── a.pl │ │ │ ├── aa.pl │ │ │ ├── b.pl │ │ │ ├── c.pl │ │ │ ├── data1 │ │ │ ├── data2 │ │ │ ├── k.txt │ │ │ └── try.sh │ │ ├── bigatom │ │ │ └── bigatom-1.9.pl │ │ ├── bug_list.txt │ │ ├── debug_multifile │ │ │ └── debug_multifile.pl │ │ ├── debugger_bug_curry_translation │ │ │ ├── README │ │ │ └── debugger_error.pl │ │ ├── debugging_cyclic_term │ │ │ ├── README │ │ │ └── inf_term.pl │ │ ├── ensure_loaded_bug │ │ │ ├── ensure_loaded_bug.pl │ │ │ └── ensure_loaded_bug_2.pl │ │ ├── isa │ │ │ ├── 8q1 │ │ │ ├── 8q1-s │ │ │ ├── lee.pl │ │ │ ├── problem │ │ │ ├── ps1.6.vt │ │ │ └── t │ │ ├── memory │ │ │ └── memory.pl │ │ ├── multi_reload │ │ │ └── multi_reload.pl │ │ ├── number_codes │ │ │ └── number_codes_bug.pl │ │ ├── psanchez │ │ │ ├── aries.pl.gz │ │ │ ├── small_dcg.pl │ │ │ ├── stat │ │ │ └── stat.pl │ │ └── read_bug │ │ │ └── read_bug.pl │ ├── NODISTRIBUTE │ ├── Pending │ │ ├── arithmetic │ │ │ └── arith_mem_error.pl │ │ ├── attach │ │ │ └── attach_bug.pl │ │ ├── bug_list.txt │ │ ├── compiler_bug │ │ │ └── compiler_bug.pl │ │ ├── conc_assert │ │ │ └── conc_assert.pl │ │ ├── conc_backtracking │ │ │ ├── DESC │ │ │ ├── a.pl │ │ │ ├── b.pl │ │ │ └── c.pl │ │ ├── debug_multifile │ │ │ └── debug_multifile.pl │ │ ├── embedded_debugger │ │ │ ├── kk.pl │ │ │ ├── mm.pl │ │ │ └── readme.txt │ │ ├── exceptions │ │ │ ├── exceptions_memory.pl │ │ │ ├── exceptions_speed.pl │ │ │ ├── kk.txt │ │ │ └── kk2.txt │ │ ├── fastrw_conc │ │ │ ├── README │ │ │ ├── port.pl │ │ │ ├── reader.pl │ │ │ └── writer.pl │ │ ├── foreign │ │ │ ├── foo │ │ │ │ └── foo.pl │ │ │ └── usefoo.pl │ │ ├── intercept_bug │ │ │ └── intercept_bug.pl │ │ ├── jsabater │ │ │ ├── j.pl │ │ │ ├── js.pl │ │ │ ├── jsab.pl │ │ │ ├── jsab2.pl │ │ │ ├── negate.pl │ │ │ ├── original.pl │ │ │ ├── simple.pl │ │ │ └── simple_rep.pl │ │ ├── lib_modules_test │ │ │ ├── NODISTRIBUTE │ │ │ ├── aa.pl │ │ │ ├── client.pl │ │ │ ├── ran.pl │ │ │ ├── readme.txt │ │ │ ├── server.pl │ │ │ ├── socket_number.pl │ │ │ └── webbased_server │ │ │ │ ├── Makefile │ │ │ │ └── webbased_server.pl │ │ ├── modules │ │ │ ├── dirs_manual.pl │ │ │ ├── lcm.pl │ │ │ └── lcm2.pl │ │ ├── multi_data │ │ │ └── multifile_data.pl │ │ ├── reading_fp_numbers_in_module │ │ │ ├── Makefile │ │ │ ├── main_module.pl │ │ │ └── np.pl │ │ ├── reexports_not_made_visible │ │ │ └── readme.txt │ │ ├── segv-backup │ │ │ ├── db │ │ │ │ ├── comps_actualization │ │ │ │ ├── comps_actualization.lck │ │ │ │ ├── comps_info │ │ │ │ ├── comps_info.lck │ │ │ │ ├── db_def │ │ │ │ ├── db_def.lck │ │ │ │ ├── db_tables │ │ │ │ ├── db_tables.lck │ │ │ │ ├── field_def │ │ │ │ ├── field_def.lck │ │ │ │ ├── table_def │ │ │ │ ├── table_def.lck │ │ │ │ ├── table_fields │ │ │ │ ├── table_fields.lck │ │ │ │ ├── table_order │ │ │ │ ├── table_order.lck │ │ │ │ ├── type_arg │ │ │ │ ├── type_arg.lck │ │ │ │ ├── type_def │ │ │ │ └── type_def.lck │ │ │ ├── segv.pl │ │ │ ├── segv.zip │ │ │ └── templates │ │ │ │ ├── db_tb_head.html │ │ │ │ └── search.html │ │ ├── segv │ │ │ ├── datadata │ │ │ ├── datadata2 │ │ │ ├── datadata3 │ │ │ ├── db │ │ │ │ ├── comps_actualization │ │ │ │ ├── comps_actualization.lck │ │ │ │ ├── comps_info │ │ │ │ ├── comps_info.lck │ │ │ │ ├── db_def │ │ │ │ ├── db_def.lck │ │ │ │ ├── db_tables │ │ │ │ ├── db_tables.lck │ │ │ │ ├── field_def │ │ │ │ ├── field_def.lck │ │ │ │ ├── table_def │ │ │ │ ├── table_def.lck │ │ │ │ ├── table_fields │ │ │ │ ├── table_fields.lck │ │ │ │ ├── table_order │ │ │ │ ├── table_order.lck │ │ │ │ ├── type_arg │ │ │ │ ├── type_arg.lck │ │ │ │ ├── type_def │ │ │ │ └── type_def.lck │ │ │ ├── kk.pl │ │ │ ├── redata.pl │ │ │ ├── segv.pl │ │ │ ├── segv.pl-version1 │ │ │ ├── segv.pl-version2 │ │ │ ├── segv.zip │ │ │ └── templates │ │ │ │ ├── db_tb_head.html │ │ │ │ └── search.html │ │ ├── sformat │ │ │ ├── README │ │ │ ├── committed_hours.pl │ │ │ ├── dates_and_facts.pl │ │ │ ├── inductive_ctcheck.pl │ │ │ ├── intended_effort.pl │ │ │ ├── intended_effort_bristol.pl │ │ │ ├── intended_effort_ruc.pl │ │ │ ├── intended_effort_soton.pl │ │ │ ├── intended_effort_upm.pl │ │ │ ├── managing_project.pl │ │ │ ├── payments.pl │ │ │ ├── planned.pl │ │ │ ├── responsible_persons_upm.pl │ │ │ └── workplan.pl │ │ ├── topleveldecl.pl │ │ ├── var_assert │ │ │ └── var_assert.pl │ │ └── win32 │ │ │ └── possible_bug_cr_lf │ └── Unclassified │ │ ├── c2 │ │ ├── bta.pl │ │ ├── cogen-tools.pl │ │ └── pp.pl │ │ ├── c_itf │ │ ├── a.pl │ │ ├── b.pl │ │ ├── c.pl │ │ ├── d.pl │ │ ├── e.pl │ │ ├── try.pl │ │ └── try2.pl │ │ ├── compiler_bug_1 │ │ ├── wave2-1.7.wam │ │ ├── wave2-1.9-back.wam │ │ ├── wave2-1.9.wam │ │ ├── wave2.pl │ │ └── yhat.pl │ │ ├── conc_term_indexing │ │ ├── bug.pl │ │ ├── diff_modules.pl │ │ ├── make_assertion.pl │ │ ├── make_retract.pl │ │ └── same_module.pl │ │ ├── data_reexp │ │ ├── m1.pl │ │ ├── m2.pl │ │ └── main.pl │ │ ├── debugger │ │ ├── conc.pl │ │ ├── do.pl │ │ └── slots.pl │ │ ├── dist.pl │ │ ├── engine │ │ ├── dict_vs_assert.pl │ │ ├── trail.pl │ │ └── trail2.pl │ │ ├── library │ │ ├── devlib.pl │ │ ├── main.pl │ │ └── mylib.pl │ │ ├── setof.pl │ │ ├── testov.pl │ │ └── varmodulename.pl │ ├── ciaoc │ ├── Makefile │ ├── ciaoc.itf │ ├── ciaoc.pl │ ├── ciaoc.po │ ├── gen_asr.itf │ ├── gen_asr.pl │ └── gen_asr.po │ ├── client.bat │ ├── compatibility │ ├── NODISTRIBUTE │ ├── README │ └── sicstus3 │ │ ├── PENDIENTE │ │ ├── aggregates.pl │ │ ├── builtin.pl │ │ ├── builtin_bak.pl │ │ ├── ciaocompat.pl │ │ ├── compiler │ │ └── c_itf.sicstus │ │ ├── dcg.pl │ │ ├── dcg_expansion.pl │ │ ├── dynamic.pl │ │ ├── format.pl │ │ ├── internals.pl │ │ ├── iso.pl │ │ ├── old_database.pl │ │ ├── read.pl │ │ ├── streams.pl │ │ ├── ttyout.pl │ │ ├── user.pl │ │ └── write.pl │ ├── contrib │ ├── Makefile │ ├── case_tester │ │ └── case_tester.pl │ ├── catcher │ │ ├── NODISTRIBUTE │ │ ├── catcher.pl │ │ ├── catcher_rt.itf │ │ ├── catcher_rt.pl │ │ ├── catcher_rt.po │ │ ├── catcher_tr.itf │ │ ├── catcher_tr.pl │ │ └── catcher_tr.po │ ├── chartlib │ │ ├── bltclass.asr │ │ ├── bltclass.itf │ │ ├── bltclass.pl │ │ ├── bltclass.po │ │ ├── chartlib.itf │ │ ├── chartlib.pl │ │ ├── chartlib.po │ │ ├── chartlib_errhandle.asr │ │ ├── chartlib_errhandle.itf │ │ ├── chartlib_errhandle.pl │ │ ├── chartlib_errhandle.po │ │ ├── color_pattern.asr │ │ ├── color_pattern.itf │ │ ├── color_pattern.pl │ │ ├── color_pattern.po │ │ ├── doc │ │ │ ├── LPSETTINGS.pl │ │ │ └── NODISTRIBUTE │ │ ├── errors │ │ │ ├── err_color │ │ │ ├── err_genmultibar │ │ │ ├── err_genmultibar1 │ │ │ ├── err_list │ │ │ ├── err_pattern │ │ │ ├── err_table │ │ │ ├── err_vec1 │ │ │ ├── err_vec2 │ │ │ ├── err_vec3 │ │ │ └── err_vec4 │ │ ├── examples │ │ │ ├── .ps │ │ │ └── barchart1.pl │ │ ├── foo.pl │ │ ├── genbar1.asr │ │ ├── genbar1.itf │ │ ├── genbar1.pl │ │ ├── genbar1.po │ │ ├── genbar2.asr │ │ ├── genbar2.itf │ │ ├── genbar2.pl │ │ ├── genbar2.po │ │ ├── genbar3.asr │ │ ├── genbar3.itf │ │ ├── genbar3.pl │ │ ├── genbar3.po │ │ ├── genbar4.asr │ │ ├── genbar4.itf │ │ ├── genbar4.pl │ │ ├── genbar4.po │ │ ├── gengraph1.asr │ │ ├── gengraph1.itf │ │ ├── gengraph1.pl │ │ ├── gengraph1.po │ │ ├── gengraph2.asr │ │ ├── gengraph2.itf │ │ ├── gengraph2.pl │ │ ├── gengraph2.po │ │ ├── genmultibar.asr │ │ ├── genmultibar.itf │ │ ├── genmultibar.pl │ │ ├── genmultibar.po │ │ ├── images │ │ │ ├── _patterns.tcl │ │ │ └── chalk.gif │ │ ├── install_utils.asr │ │ ├── install_utils.itf │ │ ├── install_utils.pl │ │ ├── install_utils.po │ │ ├── stat_widget.itf │ │ ├── stat_widget.pl │ │ ├── stat_widget.po │ │ ├── table_widget1.asr │ │ ├── table_widget1.itf │ │ ├── table_widget1.pl │ │ ├── table_widget1.po │ │ ├── table_widget2.asr │ │ ├── table_widget2.itf │ │ ├── table_widget2.pl │ │ ├── table_widget2.po │ │ ├── table_widget3.asr │ │ ├── table_widget3.itf │ │ ├── table_widget3.pl │ │ ├── table_widget3.po │ │ ├── table_widget4.asr │ │ ├── table_widget4.itf │ │ ├── table_widget4.pl │ │ ├── table_widget4.po │ │ ├── test_format.asr │ │ ├── test_format.itf │ │ ├── test_format.pl │ │ └── test_format.po │ ├── chat80 │ │ ├── Makefile.pl │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── SETTINGS.pl │ │ ├── chat.pl │ │ ├── chatops.pl │ │ ├── db │ │ │ ├── border.pl │ │ │ ├── cities.pl │ │ │ ├── contai.pl │ │ │ ├── countr.addr │ │ │ ├── countr.pl │ │ │ ├── ndtabl.pl │ │ │ ├── rivers.pl │ │ │ └── world0.pl │ │ ├── modules.ps │ │ ├── name.pl │ │ ├── nl │ │ │ ├── aggreg.pl │ │ │ ├── clotab.pl │ │ │ ├── newdic.pl │ │ │ ├── newerg.pl │ │ │ ├── qplan.pl │ │ │ ├── scopes.pl │ │ │ ├── slots.pl │ │ │ ├── talkr.pl │ │ │ ├── templa.pl │ │ │ └── xgrun.pl │ │ ├── top │ │ │ ├── ptree.pl │ │ │ ├── readin.pl │ │ │ ├── top.pl │ │ │ └── wtop.pl │ │ ├── undefine.pl │ │ ├── webchat.pl │ │ └── webchat_test.cgi │ ├── costmodel │ │ ├── NOCOMPILE │ │ ├── costmodel.pl │ │ ├── costmodel_rt.pl │ │ └── costmodel_tr.pl │ ├── ddlist │ │ ├── ddlist.asr │ │ ├── ddlist.itf │ │ ├── ddlist.pl │ │ ├── ddlist.po │ │ └── examples │ │ │ ├── ddl1.itf │ │ │ ├── ddl1.pl │ │ │ ├── ddl1.po │ │ │ ├── ddl2.itf │ │ │ ├── ddl2.pl │ │ │ └── ddl2.po │ ├── debugpred │ │ ├── debugpred.pl │ │ ├── debugpred_tr.itf │ │ ├── debugpred_tr.pl │ │ ├── debugpred_tr.po │ │ ├── test.itf │ │ ├── test.pl │ │ └── test.po │ ├── distutils │ │ ├── configutils.asr │ │ ├── configutils.itf │ │ ├── configutils.pl │ │ ├── configutils.po │ │ ├── distclean.asr │ │ ├── distclean.itf │ │ ├── distclean.pl │ │ ├── distclean.po │ │ ├── distmkf.pl.bak │ │ ├── distutils.asr │ │ ├── distutils.itf │ │ ├── distutils.pl │ │ ├── distutils.po │ │ ├── installmkf.itf │ │ ├── installmkf.pl │ │ ├── installmkf.po │ │ ├── installutils.pl.old │ │ ├── readmemkf.itf │ │ ├── readmemkf.pl │ │ └── readmemkf.po │ ├── fd │ │ ├── examples │ │ │ ├── crypta.pl │ │ │ ├── dec_seqs.pl │ │ │ ├── dgr.pl │ │ │ ├── examples.pl │ │ │ ├── fib.pl │ │ │ ├── magic3.itf │ │ │ ├── magic3.pl │ │ │ ├── magic3.po │ │ │ ├── magic4.itf │ │ │ ├── magic4.pl │ │ │ ├── magic4.po │ │ │ ├── magic_square.pl │ │ │ ├── pythagoras.pl │ │ │ ├── queens.pl │ │ │ ├── queensfd.pl │ │ │ ├── smm.pl │ │ │ ├── smm_loop.pl │ │ │ └── test.pl │ │ ├── fd.pl │ │ ├── fd_bounds.asr │ │ ├── fd_bounds.itf │ │ ├── fd_bounds.pl │ │ ├── fd_bounds.po │ │ ├── fd_doc.pl │ │ ├── fd_rt.asr │ │ ├── fd_rt.itf │ │ ├── fd_rt.pl │ │ ├── fd_rt.po │ │ ├── fd_syntax.pl │ │ ├── fd_tr.asr │ │ ├── fd_tr.itf │ │ ├── fd_tr.pl │ │ ├── fd_tr.po │ │ └── fd_translation.pl │ ├── gnuplot │ │ ├── gnuplot.asr │ │ ├── gnuplot.itf │ │ ├── gnuplot.pl │ │ └── gnuplot.po │ ├── hashtable │ │ ├── hashtab.c │ │ ├── hashtab.h │ │ ├── hashtable.itf │ │ ├── hashtable.pl │ │ ├── hashtable.po │ │ ├── hashtable_inline.c │ │ ├── lookupa.c │ │ ├── lookupa.h │ │ ├── recycle.c │ │ ├── recycle.h │ │ └── standard.h │ ├── ho_unif │ │ ├── hnorm.asr │ │ ├── hnorm.itf │ │ ├── hnorm.pl │ │ ├── hnorm.po │ │ ├── lambda_terms.asr │ │ ├── lambda_terms.itf │ │ ├── lambda_terms.pl │ │ ├── lambda_terms.po │ │ ├── pattern_unify.asr │ │ ├── pattern_unify.itf │ │ ├── pattern_unify.pl │ │ ├── pattern_unify.po │ │ ├── testing.itf │ │ ├── testing.pl │ │ └── testing.po │ ├── hrtimer │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── hrtime.c │ │ ├── hrtime.h │ │ ├── hrtime_shadow.h │ │ ├── hrtime_shadow.h.bottom │ │ ├── hrtime_shadow.h.top │ │ ├── hrtimea.pl │ │ ├── hrtimer.pl │ │ └── include_hrtime.h │ ├── lazy │ │ ├── examples │ │ │ ├── ex.itf │ │ │ ├── ex.pl │ │ │ ├── ex.po │ │ │ ├── ex_function.itf │ │ │ ├── ex_function.pl │ │ │ ├── ex_function.po │ │ │ ├── fib.itf │ │ │ ├── fib.pl │ │ │ ├── fib.po │ │ │ ├── fib_function.itf │ │ │ ├── fib_function.pl │ │ │ ├── fib_function.po │ │ │ ├── lqsort.itf │ │ │ ├── lqsort.pl │ │ │ ├── lqsort.po │ │ │ ├── lqsort_function.itf │ │ │ ├── lqsort_function.pl │ │ │ ├── lqsort_function.po │ │ │ ├── module1.itf │ │ │ ├── module1.pl │ │ │ ├── module1.po │ │ │ ├── module2.asr │ │ │ ├── module2.itf │ │ │ ├── module2.pl │ │ │ ├── module2.po │ │ │ ├── naturals.itf │ │ │ ├── naturals.pl │ │ │ ├── naturals.po │ │ │ ├── naturals_function.itf │ │ │ ├── naturals_function.pl │ │ │ ├── naturals_function.po │ │ │ ├── primes.itf │ │ │ ├── primes.pl │ │ │ ├── primes.po │ │ │ ├── primes_function.itf │ │ │ ├── primes_function.pl │ │ │ ├── primes_function.po │ │ │ ├── tetrahedral.itf │ │ │ ├── tetrahedral.pl │ │ │ ├── tetrahedral.po │ │ │ ├── tetrahedral_function.itf │ │ │ ├── tetrahedral_function.pl │ │ │ └── tetrahedral_function.po │ │ ├── lazy.pl │ │ ├── lazy_lib.asr │ │ ├── lazy_lib.itf │ │ ├── lazy_lib.pl │ │ ├── lazy_lib.po │ │ ├── lazytr.itf │ │ ├── lazytr.pl │ │ ├── lazytr.po │ │ └── ops.pl │ ├── macro │ │ ├── examples │ │ │ ├── test1.itf │ │ │ ├── test1.pl │ │ │ ├── test1.po │ │ │ ├── test2.itf │ │ │ ├── test2.pl │ │ │ └── test2.po │ │ ├── macro.pl │ │ ├── macro__tr.itf │ │ ├── macro__tr.pl │ │ └── macro__tr.po │ ├── math │ │ ├── datadist.itf │ │ ├── datadist.pl │ │ ├── datadist.po │ │ ├── mmatrix.asr │ │ ├── mmatrix.dat │ │ ├── mmatrix.itf │ │ ├── mmatrix.pl │ │ ├── mmatrix.po │ │ ├── mmatrix_2.dat │ │ ├── mmatrix_3.dat │ │ ├── mmatrix_4.dat │ │ ├── mmatrix_6.dat │ │ ├── stat.itf │ │ ├── stat.pl │ │ └── stat.po │ ├── modtester │ │ ├── modtester.itf │ │ ├── modtester.pl │ │ └── modtester.po │ ├── mycin │ │ ├── examples │ │ │ ├── NOCOMPILE │ │ │ ├── age.pl │ │ │ ├── horse_riding.pl │ │ │ └── project_risk.pl │ │ ├── mycin.pl │ │ ├── mycin_doc.itf │ │ ├── mycin_doc.pl │ │ ├── mycin_doc.po │ │ ├── mycin_error_reporting.asr │ │ ├── mycin_error_reporting.itf │ │ ├── mycin_error_reporting.pl │ │ ├── mycin_error_reporting.po │ │ ├── mycin_rt.itf │ │ ├── mycin_rt.pl │ │ ├── mycin_rt.po │ │ ├── mycin_support.itf │ │ ├── mycin_support.pl │ │ ├── mycin_support.po │ │ ├── mycin_tr.itf │ │ ├── mycin_tr.pl │ │ └── mycin_tr.po │ ├── mycin_rulebase │ │ ├── examples │ │ │ ├── Academic │ │ │ │ ├── NOCOMPILE │ │ │ │ ├── age.pl │ │ │ │ └── horse_riding.pl │ │ │ └── ProjectEvaluationExpert │ │ │ │ ├── NOCOMPILE │ │ │ │ ├── project_features.pl │ │ │ │ └── project_risk.pl │ │ ├── mycin_rulebase.pl │ │ ├── mycin_rulebase_doc.pl │ │ ├── mycin_rulebase_error_reporting.asr │ │ ├── mycin_rulebase_error_reporting.itf │ │ ├── mycin_rulebase_error_reporting.pl │ │ ├── mycin_rulebase_error_reporting.po │ │ ├── mycin_rulebase_rt.itf │ │ ├── mycin_rulebase_rt.pl │ │ ├── mycin_rulebase_rt.po │ │ ├── mycin_rulebase_tr.itf │ │ ├── mycin_rulebase_tr.pl │ │ └── mycin_rulebase_tr.po │ ├── oldt │ │ ├── examples │ │ │ ├── breadth_first.pl │ │ │ ├── infinite_failure.pl │ │ │ ├── infinite_functor.pl │ │ │ ├── reconsume_solutions.pl │ │ │ └── several_solutions.pl │ │ └── oldt.pl │ ├── pattern_filler.asr │ ├── pattern_filler.itf │ ├── pattern_filler.pl │ ├── pattern_filler.po │ ├── persvalue.old │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── persvalue.pl │ │ ├── test.pl │ │ └── user │ │ │ ├── bar_1.pl │ │ │ └── bar_1_ops.pl │ ├── persvalue │ │ ├── persvalue.asr │ │ ├── persvalue.itf │ │ ├── persvalue.pl │ │ ├── persvalue.po │ │ ├── persvalue_base.asr │ │ ├── persvalue_base.itf │ │ ├── persvalue_base.pl │ │ ├── persvalue_base.po │ │ └── test.txt │ ├── profiler │ │ ├── NOCOMPILE │ │ ├── dummy.pl │ │ ├── examples │ │ │ ├── dummy2.pl │ │ │ ├── dummy3.pl │ │ │ ├── dummy4.pl │ │ │ ├── school.pl │ │ │ └── witt.pl │ │ ├── profiler.c │ │ ├── profiler.h │ │ ├── profiler.pl │ │ ├── profiler_basic.pl │ │ ├── profiler_doc.pl │ │ ├── profiler_extra.itf │ │ ├── profiler_extra.pl │ │ ├── profiler_extra.po │ │ ├── profiler_rt.pl │ │ ├── profiler_tr.pl │ │ └── profiler_utils.pl │ ├── provrml │ │ ├── FDvis │ │ │ ├── NOCOMPILE │ │ │ ├── NODISTRIBUTE │ │ │ ├── curve.pl │ │ │ ├── curve.wrl │ │ │ ├── cv3d.pl │ │ │ ├── cv3d_misc.pl │ │ │ ├── ease.pl │ │ │ ├── fix_list.pl │ │ │ ├── internal_types.pl │ │ │ ├── queens │ │ │ ├── test_vrml.pl │ │ │ ├── vis │ │ │ ├── vis.html │ │ │ ├── vis.java │ │ │ ├── vis.pl │ │ │ ├── vrml_communication.pl │ │ │ ├── vrml_socket_communication.pl │ │ │ └── vrml_sockets.pl │ │ ├── boundary.asr │ │ ├── boundary.itf │ │ ├── boundary.pl │ │ ├── boundary.po │ │ ├── dictionary.asr │ │ ├── dictionary.itf │ │ ├── dictionary.pl │ │ ├── dictionary.po │ │ ├── dictionary_tree.asr │ │ ├── dictionary_tree.itf │ │ ├── dictionary_tree.pl │ │ ├── dictionary_tree.po │ │ ├── doc │ │ │ └── LPSETTINGS.pl │ │ ├── error.asr │ │ ├── error.itf │ │ ├── error.pl │ │ ├── error.po │ │ ├── field_type.asr │ │ ├── field_type.itf │ │ ├── field_type.pl │ │ ├── field_type.po │ │ ├── field_value.asr │ │ ├── field_value.itf │ │ ├── field_value.pl │ │ ├── field_value.po │ │ ├── field_value_check.asr │ │ ├── field_value_check.itf │ │ ├── field_value_check.pl │ │ ├── field_value_check.po │ │ ├── generator.asr │ │ ├── generator.itf │ │ ├── generator.pl │ │ ├── generator.po │ │ ├── generator_util.asr │ │ ├── generator_util.itf │ │ ├── generator_util.pl │ │ ├── generator_util.po │ │ ├── internal_types.asr │ │ ├── internal_types.itf │ │ ├── internal_types.pl │ │ ├── internal_types.po │ │ ├── io.asr │ │ ├── io.itf │ │ ├── io.pl │ │ ├── io.po │ │ ├── lookup.asr │ │ ├── lookup.itf │ │ ├── lookup.pl │ │ ├── lookup.po │ │ ├── parser.asr │ │ ├── parser.itf │ │ ├── parser.pl │ │ ├── parser.po │ │ ├── parser_util.asr │ │ ├── parser_util.itf │ │ ├── parser_util.pl │ │ ├── parser_util.po │ │ ├── possible.asr │ │ ├── possible.itf │ │ ├── possible.pl │ │ ├── possible.po │ │ ├── provrml.asr │ │ ├── provrml.itf │ │ ├── provrml.pl │ │ ├── provrml.po │ │ ├── test │ │ │ ├── check.itf │ │ │ ├── check.pl │ │ │ └── check.po │ │ ├── tokeniser.asr │ │ ├── tokeniser.itf │ │ ├── tokeniser.pl │ │ ├── tokeniser.po │ │ └── vrml_code │ │ │ ├── cone.vrml │ │ │ ├── kurvan.wrl │ │ │ └── kurvan_sv.ps.gz │ ├── regexp │ │ ├── regexp.pl │ │ ├── regexp_code.itf │ │ ├── regexp_code.pl │ │ ├── regexp_code.po │ │ ├── regexp_trans.itf │ │ ├── regexp_trans.pl │ │ └── regexp_trans.po │ ├── shvarcom │ │ ├── NOCOMPILE │ │ └── NODISTRIBUTE │ ├── sicstus-ugraphs-other │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ └── ugraphs.pl │ ├── subversion │ │ ├── subversion.itf │ │ ├── subversion.pl │ │ ├── subversion.po │ │ └── subversion_inline.c │ ├── tester │ │ ├── test │ │ │ ├── NOCOMPILE │ │ │ ├── tester_test1.pl │ │ │ └── tester_test2.pl │ │ ├── tester.asr │ │ ├── tester.itf │ │ ├── tester.pl │ │ └── tester.po │ ├── time_analyzer │ │ ├── test │ │ │ ├── 1 │ │ │ │ ├── ta1.itf │ │ │ │ ├── ta1.pl │ │ │ │ └── ta1.po │ │ │ ├── 2 │ │ │ │ ├── ta2.itf │ │ │ │ ├── ta2.pl │ │ │ │ └── ta2.po │ │ │ ├── 3 │ │ │ │ ├── ta3.itf │ │ │ │ ├── ta3.pl │ │ │ │ └── ta3.po │ │ │ ├── 4 │ │ │ │ ├── ta4.itf │ │ │ │ ├── ta4.pl │ │ │ │ └── ta4.po │ │ │ ├── 5 │ │ │ │ ├── ta5.itf │ │ │ │ ├── ta5.pl │ │ │ │ └── ta5.po │ │ │ ├── 6 │ │ │ │ ├── ta6.itf │ │ │ │ ├── ta6.pl │ │ │ │ └── ta6.po │ │ │ ├── 5e │ │ │ │ ├── NOCOMPILE │ │ │ │ ├── restore_vs_analize.plot │ │ │ │ ├── restore_vs_analize1.dat │ │ │ │ ├── restore_vs_analize2.dat │ │ │ │ ├── ta5e.pl │ │ │ │ └── ver.ps │ │ │ ├── 6e │ │ │ │ ├── NOCOMPILE │ │ │ │ └── ta6e.pl │ │ │ ├── cost_test.itf │ │ │ ├── cost_test.pl │ │ │ ├── cost_test.po │ │ │ ├── performance_test.plot │ │ │ ├── performance_test1.dat │ │ │ ├── test_all.itf │ │ │ ├── test_all.pl │ │ │ └── test_all.po │ │ ├── time_analyzer.asr │ │ ├── time_analyzer.itf │ │ ├── time_analyzer.pl │ │ └── time_analyzer.po │ ├── transactions │ │ ├── README.txt │ │ ├── transaction_concurrency.asr │ │ ├── transaction_concurrency.itf │ │ ├── transaction_concurrency.pl │ │ ├── transaction_concurrency.po │ │ ├── transaction_logging.asr │ │ ├── transaction_logging.itf │ │ ├── transaction_logging.pl │ │ ├── transaction_logging.po │ │ ├── transaction_test.itf │ │ ├── transaction_test.pl │ │ ├── transaction_test.po │ │ ├── transactions.pl │ │ ├── transactionsrt.asr │ │ ├── transactionsrt.itf │ │ ├── transactionsrt.pl │ │ ├── transactionsrt.po │ │ ├── transactionstr.itf │ │ ├── transactionstr.pl │ │ └── transactionstr.po │ ├── truster │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── qsort2.pl │ │ ├── test1.pl │ │ ├── truster.pl │ │ ├── truster_rt.pl │ │ └── truster_tr.pl │ ├── xdr_handle │ │ ├── compatible.pl │ │ ├── constraints.pl │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── example1.pl │ │ │ ├── example2.pl │ │ │ ├── functions.js │ │ │ ├── js_location.pl │ │ │ └── pers │ │ │ │ └── html_manager │ │ │ │ └── xdr_tree_c_1.pl │ │ ├── html_format.pl │ │ ├── schema.pl │ │ ├── xdr_handle.asr │ │ ├── xdr_handle.itf │ │ ├── xdr_handle.pl │ │ ├── xdr_handle.po │ │ ├── xdr_types.asr │ │ ├── xdr_types.itf │ │ ├── xdr_types.pl │ │ ├── xdr_types.po │ │ ├── xdrdocument.itf │ │ ├── xdrdocument.pl │ │ └── xdrdocument.po │ └── xml_path │ │ ├── doc │ │ ├── exA │ │ ├── exB │ │ └── xml_path_doc.pl │ │ ├── examples │ │ ├── Makefile │ │ ├── examples.pl │ │ ├── query_store_new.pl │ │ ├── xml_dir.pl │ │ └── xml_path_test.pl │ │ ├── xml_path.pl │ │ ├── xml_path_rt.itf │ │ ├── xml_path_rt.pl │ │ ├── xml_path_rt.po │ │ ├── xml_path_syntax.pl │ │ ├── xml_path_tr.itf │ │ ├── xml_path_tr.pl │ │ ├── xml_path_tr.po │ │ ├── xml_path_types.asr │ │ ├── xml_path_types.itf │ │ ├── xml_path_types.pl │ │ └── xml_path_types.po │ ├── devel-add-path │ ├── devel-save-bootstrap │ ├── dist │ ├── DISTSETTINGS.pl │ ├── DISTSETTINGS.pl.old │ ├── DistMessageBeta │ ├── Makefile.pl │ ├── NODISTRIBUTE │ ├── REMINDERS │ ├── TarSrcText.html │ ├── ZipWinBinText.html │ ├── common │ │ ├── DISTLPDOCCOM.pl │ │ ├── DISTLPDOCSET.pl │ │ └── WWWLPDOCSET.pl │ ├── old-stuff │ │ ├── CHECKLIST.tex │ │ ├── CiaoDistHead.html.Mar12_2003 │ │ ├── CiaoDistTail.html.Mar12_2003 │ │ ├── DistList.pending │ │ ├── DistList.processed │ │ ├── DistMessage │ │ ├── MacOSXSrcText.html │ │ └── REMINDERS │ └── some-devel-scripts │ │ ├── devel-add-path │ │ ├── devel-compile-all │ │ └── devel-save-bootstrap │ ├── doc │ ├── CQS │ │ ├── NODISTRIBUTE │ │ └── cqs.tex │ ├── INDEV │ │ ├── ChangeLog1.5 │ │ ├── DMCAI-clpr │ │ │ ├── README │ │ │ └── clp.tex │ │ ├── NODISTRIBUTE │ │ ├── ciao_bak.tex │ │ ├── ciao_remaining.tex │ │ ├── err_mess.txt │ │ ├── internals-18.tex │ │ ├── making_dynamic_libraries │ │ ├── proTcxl.ps.gz │ │ ├── prolog.pl │ │ └── sicstus.tex │ ├── Makefile.old │ ├── Makefile.pl.old │ ├── SETTINGS.COMMON.old │ ├── SETTINGS_COMMON.pl.old │ ├── brochure │ │ ├── NODISTRIBUTE │ │ ├── ciao-1.10.preIndia.tex │ │ ├── ciao-1.10.tex │ │ ├── ciao.1.4.2.tex │ │ ├── ciao.1.4.mcl.tex │ │ ├── ciao.1.6.tex │ │ ├── ciao.1.6_ger.tex │ │ ├── ciao.1.6_lopstr00.tex │ │ ├── ciao.1.6_newsletter.ps.gz.enc │ │ ├── ciao.1.6_newsletter.tex │ │ ├── ciao.1.6_newsletter.txt │ │ ├── ciao.1.6_old.tex │ │ ├── ciao1.8.tex │ │ ├── ciao1.8_one.tex │ │ ├── ciao_brussels_may_01.tex │ │ ├── ciao_s.ps │ │ ├── ciaocopy.sty │ │ ├── herme.mail │ │ ├── name │ │ ├── prologfaq_text │ │ └── topat │ ├── common │ │ ├── ADTs.lpdoc │ │ ├── ADTs.pl │ │ ├── AboutCiao.lpdoc │ │ ├── AboutLPdoc.lpdoc │ │ ├── AboutName.lpdoc │ │ ├── Acknowledgments.lpdoc │ │ ├── AnnotatedProlog.lpdoc │ │ ├── AnnotatedProlog.pl │ │ ├── Append.lpdoc │ │ ├── Append.pl │ │ ├── Artistic │ │ ├── BeyondInstall.pl │ │ ├── Builtins.lpdoc │ │ ├── Builtins.pl │ │ ├── CIAOLPDOCSHARED.itf │ │ ├── CIAOLPDOCSHARED.pl │ │ ├── CIAOLPDOCSHARED.po │ │ ├── CiaoDesc.lpdoc │ │ ├── CiaoDesc.lpdoc.BAK │ │ ├── CiaoHead.html │ │ ├── CiaoHead.info │ │ ├── CiaoPP_README.lpdoc │ │ ├── CiaoReference.lpdoc │ │ ├── CiaoTail.html │ │ ├── CiaoTail.info │ │ ├── ClassicProlog.lpdoc │ │ ├── ClassicProlog.pl │ │ ├── ClipAddress.pl │ │ ├── Compliance.lpdoc │ │ ├── Contrib.lpdoc │ │ ├── Contrib.pl │ │ ├── Conventions.lpdoc │ │ ├── Copyright.Manuals │ │ ├── Copyright.Manuals.Older │ │ ├── Copyright.pl │ │ ├── DOING │ │ ├── DevEnv.lpdoc │ │ ├── DevEnv.pl │ │ ├── EmacsDownload.lpdoc │ │ ├── EmacsTesting.lpdoc │ │ ├── EmacsUse.lpdoc │ │ ├── ExtendProlog.lpdoc │ │ ├── ExtendProlog.pl │ │ ├── GetStartUnix.pl │ │ ├── GetStartWin32.pl │ │ ├── INSTALLATION-Win32.lpdoc │ │ ├── INSTALLATION.lpdoc │ │ ├── Install.pl │ │ ├── InstallTestUnix.lpdoc │ │ ├── InstallTestWin32bin.lpdoc │ │ ├── InstallWin32bin.pl │ │ ├── Interfaces.lpdoc │ │ ├── Interfaces.pl │ │ ├── IsoProlog.lpdoc │ │ ├── IsoProlog.pl │ │ ├── LPDOCCOMMON.itf │ │ ├── LPDOCCOMMON.pl │ │ ├── LPDOCCOMMON.po │ │ ├── Lib.pl │ │ ├── Library.pl │ │ ├── MailWWWBugs.lpdoc │ │ ├── MiscProlog.lpdoc │ │ ├── MiscProlog.pl │ │ ├── NewIn1.8 │ │ ├── NewUser.lpdoc │ │ ├── PureProlog.pl │ │ ├── README.lpdoc │ │ ├── UserSetup.lpdoc │ │ ├── Warning.lpdoc │ │ ├── byrdbox.eps │ │ ├── byrdbox.fig │ │ ├── byrdbox.fig.bak │ │ ├── byrdbox.txt │ │ ├── ciao.pl │ │ ├── ciao_s.ps │ │ └── doc_ops.pl │ ├── compiler │ │ ├── LPSETTINGS.pl │ │ ├── NODISTRIBUTE │ │ └── ciao-compiler.pl │ ├── readmes │ │ ├── LPSETTINGS.pl │ │ └── RSETTINGS.pl │ ├── reference │ │ ├── LPSETTINGS.itf │ │ ├── LPSETTINGS.pl │ │ └── LPSETTINGS.po │ ├── slide │ │ ├── ciao_st.gif │ │ ├── ciao_st.ps │ │ ├── psfig.tex │ │ ├── slide.tex │ │ └── slide_no_projects.tex │ ├── test │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ └── tutorial │ │ ├── NODISTRIBUTE │ │ └── SRC │ │ ├── CLUES │ │ ├── Copyright.tex │ │ ├── NODISTRIBUTE │ │ ├── actmods.tex │ │ ├── andorra.tex │ │ ├── andprolog.tex │ │ ├── bf.pl │ │ ├── bf.tex │ │ ├── builtins.pl │ │ ├── clp.tex │ │ ├── delay.tex │ │ ├── expansions.tex │ │ ├── func.tex │ │ ├── fuzzy.tex │ │ ├── intro.tex │ │ ├── io.tex │ │ ├── libraries.tex │ │ ├── memusage.eps │ │ ├── modules.tex │ │ ├── ociao.tex │ │ ├── p.pl │ │ ├── pure.old │ │ ├── pure.pl │ │ ├── pure.tex │ │ ├── pure_extend.tex │ │ ├── remote.tex │ │ ├── threads.tex │ │ ├── tut.tex │ │ └── tutor.tex │ ├── emacs-mode │ ├── CiaoMode.pl │ ├── DiffNotes │ ├── InterfaceIDeas │ ├── Makefile │ ├── Notes │ ├── bak │ │ ├── CiaoMode.pl.bak.Mar21_00.gz │ │ ├── DOTemacs.el.Jun6_00.gz │ │ ├── NODISTRIBUTE.gz │ │ ├── cforciao.xpm.gz │ │ ├── ciao.el.body-best1.9.Jul09_05.gz │ │ ├── ciao.el.body.Dec9_2003.gz │ │ ├── ciao.el.body.Feb02_2004.gz │ │ ├── ciao.el.body.NoXemacsToolbarFeb25_2003.gz │ │ ├── ciao.el.body.NoXemacsToolbarJan20_2003.gz │ │ ├── ciao.el.body.Oct05_2004.gz │ │ ├── ciao.el.body.Oct13_2002.gz │ │ ├── ciao.el.body.Oct16_2005.gz │ │ ├── ciao.el.body.OldXemacsToolbar.Jul09_05.gz │ │ ├── ciao.el.body.UNIFIED.aug26_2002.gz │ │ ├── ciao.el.body.Win-1.8.diffs.Oct13_02gz │ │ ├── ciao.el.body.Win2000.MCyT.jun24_2002.gz │ │ ├── ciao.el.body.apr23_02.bak.gz │ │ ├── ciao.el.body.bak.3.Dec6_01.gz │ │ ├── ciao.el.body.bak.Mar31_99.gz │ │ ├── ciao.el.body.bak0.Dec10_99.gz │ │ ├── ciao.el.body.bak1.Aug19_01.gz │ │ ├── ciao.el.body.bak2.Sep2_01.gz │ │ ├── ciao.el.body.clip.aug15_2002.gz │ │ ├── ciao.el.body.dec9_01.bak.gz │ │ ├── ciao.el.body.dtm.Apr02_05.gz │ │ ├── ciao.el.body.hwprompts.may25_2002.gz │ │ ├── ciao.el.body.jan12_2003.gz │ │ ├── ciao.el.body.jan14_2003ParametricFaces.gz │ │ ├── ciao.el.body.jan15_2003.gz │ │ ├── ciao.el.body.new.May13_02.gz │ │ ├── ciao.el.body.nov17_2001.gz │ │ ├── ciao.el.body.obi1.aug22_2002.gz │ │ ├── ciao.el.body.obi1.july11_2002.gz │ │ ├── ciao.el.body.testingXemacsToolbarFeb25_2003.gz │ │ ├── ciaomanuals.xpm.gz │ │ ├── clip.gif.gz │ │ ├── context_help.xpm.gz │ │ ├── exec.xpm.gz │ │ ├── extents.el.gz │ │ ├── faces-new.el.gz │ │ ├── faces.el.gz │ │ ├── find.xpm.gz │ │ ├── help.xpm.gz │ │ ├── info.xpm.gz │ │ ├── information.xpm.gz │ │ ├── lpdocview_old.xpm.gz │ │ ├── make.xpm.gz │ │ ├── man.xpm.gz │ │ ├── mini-bug1.xpm.gz │ │ ├── mini-bug2.xpm.gz │ │ ├── mini-eyes.xpm.gz │ │ ├── mini-question.xpm.gz │ │ ├── mini-run.xpm.gz │ │ ├── mini-stop.xpm.gz │ │ ├── misc.texi.gz │ │ ├── mmm-compat.el.gz │ │ ├── next.xpm.gz │ │ ├── niceinfo.xpm.gz │ │ ├── openbook.xpm.gz │ │ ├── panel_settings.xpm.gz │ │ ├── pre21.1_99_01 │ │ │ ├── CiaoMode.lpdoc.gz │ │ │ ├── CiaoMode.pl.gz │ │ │ ├── DOTemacs.el.gz │ │ │ ├── DOTemacs.skel.gz │ │ │ ├── Makefile.gz │ │ │ ├── ciao.el.body.gz │ │ │ ├── ciao.el.gz │ │ │ ├── ciao.el.header.gz │ │ │ ├── convert-texinfo.el.gz │ │ │ ├── windows_stuff.el.gz │ │ │ └── word-help.el.gz │ │ ├── print_preview.xpm.gz │ │ ├── prolog.el.Jan17_03.gz │ │ ├── question.xpm.gz │ │ ├── readme.xpm.gz │ │ ├── redo.xpm.gz │ │ ├── reload.xpm.gz │ │ ├── script.xpm.gz │ │ ├── single_doc.xpm.gz │ │ ├── tick.xpm.gz │ │ ├── undo.xpm.gz │ │ ├── unknown.xpm.gz │ │ ├── version-control.old.Aug31_01.gz │ │ └── word-help.el.orig.Aug4_88.gz │ ├── ciao-mode-init.el │ ├── ciao-mode-init.el.skel │ ├── ciao-xemacs-simpler-toolbar-bak.el │ ├── ciao-xemacs-simpler-toolbar.el │ ├── ciao-xemacs-toolbar.el │ ├── ciao.el │ ├── ciao.el.body │ ├── ciao.el.body.NoXemacsToolbar │ ├── ciao.el.body.new │ ├── ciao.el.body.testingXemacsToolbar │ ├── ciao.el.header │ ├── ciao.elc │ ├── compare │ ├── convert-texinfo.el │ ├── doc │ │ ├── LPSETTINGS.pl │ │ ├── NODISTRIBUTE │ │ ├── README │ │ └── SETTINGSforLpdoc-1.9.old │ ├── icons │ │ ├── cancel2.png │ │ ├── cb_arrow.png │ │ ├── checkassertions.xpm │ │ ├── ciao.xpm │ │ ├── ciaoanalysis.xpm │ │ ├── ciaoasr.xpm │ │ ├── ciaoclearquery.xpm │ │ ├── ciaocustomize.xpm │ │ ├── ciaodebug.xpm │ │ ├── ciaoexeout.xpm │ │ ├── ciaoitf.xpm │ │ ├── ciaoload.xpm │ │ ├── ciaopeval.xpm │ │ ├── ciaopl.xpm │ │ ├── ciaopo.xpm │ │ ├── ciaopreproc.xpm │ │ ├── ciaopreprocask.xpm │ │ ├── ciaopreprocsee.xpm │ │ ├── ciaoprompt.xpm │ │ ├── ciaorehighlight.xpm │ │ ├── ciaoscrt.xpm │ │ ├── ciaostorequery.xpm │ │ ├── clear.xpm │ │ ├── clip.xpm │ │ ├── close.xpm │ │ ├── complete.xpm │ │ ├── copy.xpm │ │ ├── cut.xpm │ │ ├── find_error.xpm │ │ ├── glasses.xpm │ │ ├── go.png │ │ ├── jump_to.xpm │ │ ├── lpdoc.xpm │ │ ├── lpdocview.xpm │ │ ├── manuals.xpm │ │ ├── open.xpm │ │ ├── paste.xpm │ │ ├── preferences.xpm │ │ ├── print.xpm │ │ ├── save.xpm │ │ ├── saveas.xpm │ │ ├── search.xpm │ │ ├── stop.xpm │ │ ├── undo.xpm │ │ └── wordhelp.xpm │ ├── java.el │ ├── syntax-test-inferior.pl │ ├── syntax-test.pl │ ├── test_expressions │ ├── testenv │ ├── trivial.pl │ ├── win32lisp │ │ ├── nt-bash.el │ │ ├── nt-shell.el │ │ ├── print-nt.el │ │ ├── w32-shellex.el │ │ └── winnt.el │ ├── windows_stuff.el │ ├── word-help.el │ └── word-help.elc │ ├── engine │ ├── ADDING_OBJECTS_TO_STATICENG │ ├── Alternatives │ │ ├── Mem_Mang │ │ │ ├── README │ │ │ └── own_malloc_bin.c │ │ ├── NODISTRIBUTE │ │ ├── ciao_lock.h │ │ ├── kprim.c │ │ └── old_configure.c │ ├── COMMENTS-concurrency │ ├── DMALLOC.H │ ├── ENG_defs.h │ ├── M_time.c │ ├── M_time.h │ ├── Makefile │ ├── README │ ├── TAGS │ ├── Win32Threads.h │ ├── access.h │ ├── addmodules.c │ ├── alloc.c │ ├── alloc.h │ ├── alloc_defs.h │ ├── attr.c │ ├── attr_defs.h │ ├── bignum.c │ ├── bignum_defs.h │ ├── builtin.c │ ├── builtin_defs.h │ ├── ciao.c │ ├── ciao.h │ ├── ciao_gluecode.h │ ├── ciao_prolog.c │ ├── ciao_prolog.h │ ├── ciaoengine.pl │ ├── common_headers.h │ ├── compat.h │ ├── configure.c │ ├── datadefs.h │ ├── debug.h │ ├── dynlink.c │ ├── dynlink.c.orig │ ├── dynlink_defs.h │ ├── fix_path.h │ ├── flinkage.c │ ├── float_consts.c │ ├── float_consts.h │ ├── float_tostr.c │ ├── float_tostr.h │ ├── format.c │ ├── format_defs.h │ ├── functor │ ├── gauge.c │ ├── gauge_defs.h │ ├── gcdatadefs.h │ ├── gcsupport.h │ ├── heapgc.c │ ├── heapgc_defs.h │ ├── indexing.c │ ├── indexing_defs.h │ ├── initial.c │ ├── initial.h │ ├── initial_defs.h │ ├── inout.c │ ├── inout_defs.h │ ├── instrdefs.h │ ├── interrupt.c │ ├── interrupt_defs.h │ ├── locks.c │ ├── locks.h │ ├── locks_defs.h │ ├── main.bak │ ├── main.c │ ├── main.h │ ├── main_defs.h │ ├── main_exec.c │ ├── metaengine.pl │ ├── misc.c │ ├── misc_defs.h │ ├── nondet.c │ ├── nondet_defs.h │ ├── objareas.c │ ├── objareas.h │ ├── objareas_defs.h │ ├── own_malloc_bin.c │ ├── own_malloc_defs.h │ ├── own_malloc_linear.c │ ├── predtyp.h │ ├── profile_defs.h │ ├── prolog_tasks.c │ ├── prolog_tasks_defs.h │ ├── qget.c │ ├── qget_defs.h │ ├── qinsert.c │ ├── qinsert_defs.h │ ├── qinstrdefs.h │ ├── qread.c │ ├── qread_defs.h │ ├── registers.c │ ├── registers.h │ ├── stacks.c │ ├── stacks_defs.h │ ├── start.c │ ├── start_defs.h │ ├── startgoal.c │ ├── startgoal_defs.h │ ├── streams.c │ ├── streams_defs.h │ ├── support.c │ ├── support.c.new │ ├── support.h │ ├── support_defs.h │ ├── task_areas.h │ ├── tasks.c │ ├── tasks_defs.h │ ├── term_support.c │ ├── term_support_defs.h │ ├── termdefs.h │ ├── threads.h │ ├── timing.c │ ├── timing_defs.h │ ├── unix_utils.c │ ├── unix_utils_defs.h │ ├── wam.c │ ├── wam.h │ ├── wam_defs.h │ ├── wambuiltin.c │ ├── wambuiltin.h │ ├── wambuiltin_defs.h │ ├── wamfunction.c │ ├── wamfunction.h │ ├── wamfunction_defs.h │ ├── wamread.c │ ├── wamsupport.c │ ├── wamsupport_defs.h │ └── wamwrite.c │ ├── etc │ ├── DOTcshrc │ ├── DOTcshrc.skel │ ├── DOTprofile │ ├── DOTprofile.skel │ ├── Makefile.itf │ ├── Makefile.pl │ ├── Makefile.po │ ├── auto_compile_ciao │ ├── auto_compile_ciao_doc.pl │ ├── checkline.pl │ ├── chsuff │ ├── ciao-utilities.lpdoc │ ├── ciao-utilities.pl │ ├── ciao.skel │ ├── ciao_get_arch │ ├── ciao_get_arch_doc.pl │ ├── cleanco │ ├── cleandirs.itf │ ├── cleandirs.pl │ ├── cleandirs.po │ ├── collect_modules │ ├── collect_modules_doc.pl │ ├── compiler_output.itf │ ├── compiler_output.pl │ ├── compiler_output.po │ ├── components.pl │ ├── copy_a_distribution │ ├── cxref │ │ ├── NODISTRIBUTE │ │ ├── cxref.function │ │ ├── cxref.variable │ │ ├── cxref_to_davinci.pl │ │ ├── cxtry │ │ ├── default.daVinci │ │ ├── default.ps │ │ ├── engine.daVinci │ │ ├── engine.ps │ │ ├── example │ │ ├── expansion │ │ ├── expansion.mem_program │ │ ├── expansion.ps │ │ ├── first_expansion │ │ ├── out │ │ ├── parse_cxref_words.pl │ │ ├── s │ │ ├── second_expansion │ │ ├── third_expansion │ │ └── try.daVinci │ ├── fileinfo.itf │ ├── fileinfo.pl │ ├── fileinfo.po │ ├── fix_size │ ├── fix_size.c │ ├── gen_asr_file.pl │ ├── generate_foreign_compile_options │ ├── get_deps.itf │ ├── get_deps.pl │ ├── get_deps.po │ ├── list_downloads_in_html │ ├── list_matches_in_html │ ├── lpmake.itf │ ├── lpmake.pl │ ├── lpmake.pl.old │ ├── lpmake.po │ ├── makealldist │ ├── mlink │ ├── pldiff.itf │ ├── pldiff.pl │ ├── pldiff.po │ ├── rec_collect_modules │ ├── recursive_make_or_clean │ ├── remove_dirname │ ├── show_asr.itf │ ├── show_asr.pl │ ├── show_asr.po │ ├── substitute_string │ ├── synch_actions.itf │ ├── synch_actions.pl │ ├── synch_actions.po │ ├── to.bak │ ├── use.pl │ ├── viewitf.pl │ ├── viewpo.itf │ ├── viewpo.pl │ ├── viewpo.po │ ├── which_solaris_version │ ├── xfrefs.pl │ └── xmrefs.pl │ ├── examples │ ├── Makefile │ ├── README │ ├── agenda │ │ ├── Makefile │ │ ├── PhoneInsert.form │ │ ├── PhoneInsert.java │ │ ├── PhoneList.form │ │ ├── PhoneList.java │ │ ├── PhoneSearch.form │ │ ├── PhoneSearch.java │ │ └── agenda.pl │ ├── hw.pl │ ├── hw.pls │ ├── iclp01_contest │ │ ├── NODISTRIBUTE │ │ ├── cross.pl │ │ ├── mqueens.pl │ │ ├── prob.ps.gz │ │ ├── shop.pl │ │ ├── test_trip.pl │ │ ├── trip.pl │ │ └── tu.pl │ └── misc │ │ ├── Makefile │ │ ├── bignums.pl │ │ ├── fibonacci.pl │ │ ├── guardians.pl │ │ ├── jugs.pl │ │ ├── knights.pl │ │ ├── queens.pl │ │ ├── robot.pl │ │ ├── size.pl │ │ ├── suite.pl │ │ ├── trie.pl │ │ ├── world │ │ ├── wumpus.pl │ │ └── zebra_argnames.pl │ ├── include │ └── NODISTRIBUTE │ ├── install.bat │ ├── installer │ └── CONFIG │ ├── lib │ ├── Makefile.old │ ├── aggregates.asr │ ├── aggregates.ast │ ├── aggregates.itf │ ├── aggregates.pl │ ├── aggregates.po │ ├── assertions │ │ ├── assertions.itf │ │ ├── assertions.pl │ │ ├── assertions_doc.pl │ │ ├── assertions_props.asr │ │ ├── assertions_props.itf │ │ ├── assertions_props.pl │ │ ├── assertions_props.po │ │ ├── assrt_db.new │ │ ├── assrt_lib.asr │ │ ├── assrt_lib.itf │ │ ├── assrt_lib.new │ │ ├── assrt_lib.pl │ │ ├── assrt_lib.po │ │ ├── assrt_mpp.itf │ │ ├── assrt_mpp.pl │ │ ├── assrt_mpp.po │ │ ├── assrt_norm.new │ │ ├── assrt_synchk.itf │ │ ├── assrt_synchk.pl │ │ ├── assrt_synchk.po │ │ ├── assrt_write.asr │ │ ├── assrt_write.itf │ │ ├── assrt_write.pl │ │ ├── assrt_write.po │ │ ├── assrt_write0.itf │ │ ├── assrt_write0.pl │ │ ├── assrt_write0.po │ │ ├── c_itf_props.asr │ │ ├── c_itf_props.itf │ │ ├── c_itf_props.pl │ │ ├── c_itf_props.po │ │ ├── doc │ │ │ ├── LPSETTINGS.pl │ │ │ └── NODISTRIBUTE │ │ ├── doc_props.asr │ │ ├── doc_props.ast │ │ ├── doc_props.itf │ │ ├── doc_props.pl │ │ ├── doc_props.po │ │ ├── native_props.asr │ │ ├── native_props.ast │ │ ├── native_props.itf │ │ ├── native_props.pl │ │ ├── native_props.po │ │ └── test │ │ │ ├── EXPORTS │ │ │ ├── Makefile │ │ │ ├── NODISTRIBUTE │ │ │ ├── arith.pl │ │ │ ├── arithmetic.pl │ │ │ ├── aux1.pl │ │ │ ├── bar.pl │ │ │ ├── basic_props_test.pl │ │ │ ├── doc │ │ │ ├── LPSETTINGS.pl │ │ │ ├── main.pl │ │ │ └── native_props.pl │ │ │ ├── foo.pl │ │ │ ├── foo_main.pl │ │ │ ├── foomain.pl │ │ │ ├── main.pl │ │ │ ├── modules_user.pl │ │ │ ├── part1.pl │ │ │ ├── resolve.pl │ │ │ ├── testdisj.pl │ │ │ ├── tester.pl │ │ │ ├── tester_alt.pl │ │ │ ├── tester_aux.pl │ │ │ ├── tester_aux1.pl │ │ │ ├── tester_aux2.pl │ │ │ └── tester_aux3.pl │ ├── attrdump.asr │ ├── attrdump.itf │ ├── attrdump.pl │ ├── attrdump.po │ ├── auto_compile_options.pl │ ├── autoconfig │ │ ├── autoconfig.itf │ │ ├── autoconfig.pl │ │ ├── autoconfig.po │ │ ├── autoconfig_base.asr │ │ ├── autoconfig_base.itf │ │ ├── autoconfig_base.pl │ │ ├── autoconfig_base.po │ │ └── components │ │ │ ├── ciao_src_auto.itf │ │ │ ├── ciao_src_auto.pl │ │ │ ├── ciao_src_auto.po │ │ │ ├── ciaode_src_auto.itf │ │ │ ├── ciaode_src_auto.pl │ │ │ ├── ciaode_src_auto.po │ │ │ ├── ciaopp_src_auto.itf │ │ │ ├── ciaopp_src_auto.pl │ │ │ ├── ciaopp_src_auto.po │ │ │ ├── lpdoc_src_auto.itf │ │ │ ├── lpdoc_src_auto.pl │ │ │ └── lpdoc_src_auto.po │ ├── basicmodes.pl │ ├── basicmodes_doc.pl │ ├── between.asr │ ├── between.ast │ ├── between.itf │ ├── between.pl │ ├── between.po │ ├── ciaoconfig.itf │ ├── ciaoconfig.pl │ ├── ciaoconfig.po │ ├── ciaodeconfig.itf │ ├── ciaodeconfig.pl │ ├── ciaodeconfig.po │ ├── classic.pl │ ├── classic_common.pl │ ├── classic_doc.pl │ ├── classic_shell.pl │ ├── compiler │ │ ├── Makefile │ │ ├── NOTES │ │ ├── WAM_compilation │ │ ├── add_goal_trans.pl │ │ ├── c_itf.BAK │ │ ├── c_itf.asr │ │ ├── c_itf.itf │ │ ├── c_itf.pl │ │ ├── c_itf.pl.new │ │ ├── c_itf.po │ │ ├── c_itf_data │ │ ├── c_itf_internal.asr │ │ ├── c_itf_internal.itf │ │ ├── c_itf_internal.pl │ │ ├── c_itf_internal.po │ │ ├── callback.pl │ │ ├── compiler.asr │ │ ├── compiler.ast │ │ ├── compiler.itf │ │ ├── compiler.pl │ │ ├── compiler.po │ │ ├── compressed_bytecode.asr │ │ ├── compressed_bytecode.itf │ │ ├── compressed_bytecode.pl │ │ ├── compressed_bytecode.po │ │ ├── emulator_data.pl │ │ ├── exemaker.asr │ │ ├── exemaker.itf │ │ ├── exemaker.pl │ │ ├── exemaker.po │ │ ├── gauge_aux.pl │ │ ├── header │ │ ├── header.skel │ │ ├── pl2wam.asr │ │ ├── pl2wam.itf │ │ ├── pl2wam.pl │ │ ├── pl2wam.po │ │ ├── srcdbg.asr │ │ ├── srcdbg.itf │ │ ├── srcdbg.pl │ │ ├── srcdbg.po │ │ ├── translation.asr │ │ ├── translation.itf │ │ ├── translation.pl │ │ ├── translation.po │ │ ├── wamql.pl │ │ └── win_exec_ext.pl │ ├── ctrlcclean.asr │ ├── ctrlcclean.itf │ ├── ctrlcclean.pl │ ├── ctrlcclean.po │ ├── cyclic_terms.itf │ ├── cyclic_terms.pl │ ├── cyclic_terms.po │ ├── dcg.pl │ ├── dcg_doc.pl │ ├── dcg_expansion.asr │ ├── dcg_expansion.itf │ ├── dcg_expansion.pl │ ├── dcg_expansion.po │ ├── debug.pl │ ├── debugger │ │ ├── debugger.asr │ │ ├── debugger.ast │ │ ├── debugger.itf │ │ ├── debugger.pl │ │ ├── debugger.po │ │ ├── debugger_doc.pl │ │ ├── debugger_lib.asr │ │ ├── debugger_lib.itf │ │ ├── debugger_lib.pl │ │ ├── debugger_lib.po │ │ ├── embedded_rt.itf │ │ ├── embedded_rt.pl │ │ ├── embedded_rt.po │ │ ├── embedded_tr.itf │ │ ├── embedded_tr.pl │ │ └── embedded_tr.po │ ├── dec10_io.asr │ ├── dec10_io.ast │ ├── dec10_io.itf │ ├── dec10_io.pl │ ├── dec10_io.po │ ├── default.pl │ ├── default_for_ciaosh.pl │ ├── default_predicates.asr │ ├── default_predicates.ast │ ├── default_predicates.itf │ ├── default_predicates.pl │ ├── default_predicates.po │ ├── dict.asr │ ├── dict.itf │ ├── dict.pl │ ├── dict.po │ ├── dynamic.asr │ ├── dynamic.ast │ ├── dynamic.itf │ ├── dynamic.pl │ ├── dynamic.po │ ├── engine │ │ ├── Makefile │ │ ├── NOCOMPILE │ │ ├── NOTE_initialization │ │ ├── README │ │ ├── arithmetic.asr │ │ ├── arithmetic.ast │ │ ├── arithmetic.itf │ │ ├── arithmetic.pl │ │ ├── arithmetic.po │ │ ├── atomic_basic.asr │ │ ├── atomic_basic.ast │ │ ├── atomic_basic.itf │ │ ├── atomic_basic.pl │ │ ├── atomic_basic.po │ │ ├── attributed_variables.pl │ │ ├── attributed_variables.pl.new │ │ ├── attributes.asr │ │ ├── attributes.ast │ │ ├── attributes.itf │ │ ├── attributes.pl │ │ ├── attributes.pl.bak │ │ ├── attributes.po │ │ ├── basic_props.asr │ │ ├── basic_props.ast │ │ ├── basic_props.itf │ │ ├── basic_props.pl │ │ ├── basic_props.po │ │ ├── basiccontrol.asr │ │ ├── basiccontrol.ast │ │ ├── basiccontrol.itf │ │ ├── basiccontrol.pl │ │ ├── basiccontrol.po │ │ ├── builtin_directives.pl │ │ ├── data_facts.asr │ │ ├── data_facts.ast │ │ ├── data_facts.itf │ │ ├── data_facts.pl │ │ ├── data_facts.po │ │ ├── debugger_support.asr │ │ ├── debugger_support.ast │ │ ├── debugger_support.itf │ │ ├── debugger_support.pl │ │ ├── debugger_support.po │ │ ├── exceptions.asr │ │ ├── exceptions.ast │ │ ├── exceptions.itf │ │ ├── exceptions.pl │ │ ├── exceptions.po │ │ ├── hiord_rt.asr │ │ ├── hiord_rt.ast │ │ ├── hiord_rt.itf │ │ ├── hiord_rt.pl │ │ ├── hiord_rt.po │ │ ├── internals.asr │ │ ├── internals.ast │ │ ├── internals.itf │ │ ├── internals.pl │ │ ├── internals.pl.new │ │ ├── internals.pl.old │ │ ├── internals.po │ │ ├── io_aux.asr │ │ ├── io_aux.ast │ │ ├── io_aux.itf │ │ ├── io_aux.pl │ │ ├── io_aux.po │ │ ├── io_basic.asr │ │ ├── io_basic.ast │ │ ├── io_basic.itf │ │ ├── io_basic.pl │ │ ├── io_basic.po │ │ ├── loading_code.pl │ │ ├── mattr_global.asr │ │ ├── mattr_global.ast │ │ ├── mattr_global.itf │ │ ├── mattr_global.pl │ │ ├── mattr_global.po │ │ ├── mexpand.pl │ │ ├── mexpand.pl.new │ │ ├── mexpand.pl.old │ │ ├── modules.pl │ │ ├── prolog_flags.asr │ │ ├── prolog_flags.ast │ │ ├── prolog_flags.itf │ │ ├── prolog_flags.pl │ │ ├── prolog_flags.po │ │ ├── streams_basic.asr │ │ ├── streams_basic.ast │ │ ├── streams_basic.itf │ │ ├── streams_basic.pl │ │ ├── streams_basic.po │ │ ├── syntax_extensions.pl │ │ ├── system_info.asr │ │ ├── system_info.ast │ │ ├── system_info.itf │ │ ├── system_info.pl │ │ ├── system_info.po │ │ ├── term_basic.asr │ │ ├── term_basic.ast │ │ ├── term_basic.itf │ │ ├── term_basic.pl │ │ ├── term_basic.po │ │ ├── term_compare.asr │ │ ├── term_compare.ast │ │ ├── term_compare.itf │ │ ├── term_compare.pl │ │ ├── term_compare.po │ │ ├── term_typing.asr │ │ ├── term_typing.ast │ │ ├── term_typing.itf │ │ ├── term_typing.pl │ │ └── term_typing.po │ ├── errhandle.asr │ ├── errhandle.itf │ ├── errhandle.pl │ ├── errhandle.po │ ├── fastrw.asr │ ├── fastrw.disabled │ │ ├── Makefile │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── fastrw.c │ │ └── fastrw.pl │ ├── fastrw.itf │ ├── fastrw.pl │ ├── fastrw.po │ ├── file_utils.asr │ ├── file_utils.ast │ ├── file_utils.itf │ ├── file_utils.pl │ ├── file_utils.po │ ├── filenames.asr │ ├── filenames.itf │ ├── filenames.pl │ ├── filenames.po │ ├── foreign_compilation.asr │ ├── foreign_compilation.itf │ ├── foreign_compilation.pl │ ├── foreign_compilation.po │ ├── foreign_interface │ │ ├── build_foreign_interface.asr │ │ ├── build_foreign_interface.itf │ │ ├── build_foreign_interface.pl │ │ ├── build_foreign_interface.po │ │ ├── embedding_examples │ │ │ ├── Makefile │ │ │ ├── Makefile-back │ │ │ ├── NOCOMPILE │ │ │ ├── NODISTRIBUTE │ │ │ ├── engine.c │ │ │ ├── test.c │ │ │ └── test.pl │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── addresses │ │ │ │ ├── Makefile │ │ │ │ ├── objects.pl │ │ │ │ └── objects_c.c │ │ │ ├── any_term │ │ │ │ ├── Makefile │ │ │ │ ├── any_term.pl │ │ │ │ └── any_term_c.c │ │ │ ├── bignums │ │ │ │ ├── Makefile │ │ │ │ ├── bigints.pl │ │ │ │ └── bigints_c.c │ │ │ ├── byte_lists │ │ │ │ ├── Makefile │ │ │ │ ├── byte_lists.pl │ │ │ │ └── bytes_op.c │ │ │ ├── exceptions │ │ │ │ ├── Makefile │ │ │ │ ├── exceptions_c.c │ │ │ │ └── exceptions_example.pl │ │ │ ├── foreign_init │ │ │ │ ├── Makefile │ │ │ │ ├── foreign.c │ │ │ │ └── foreign_init.pl │ │ │ ├── foreign_low │ │ │ │ ├── Makefile │ │ │ │ ├── random.c │ │ │ │ └── random.pl │ │ │ ├── int_lists │ │ │ │ ├── Makefile │ │ │ │ ├── int_lists.pl │ │ │ │ └── ints_op.c │ │ │ ├── math │ │ │ │ ├── Makefile │ │ │ │ ├── math.pl │ │ │ │ └── math_user.pl │ │ │ ├── strings_and_atoms │ │ │ │ ├── Makefile │ │ │ │ ├── str_op.c │ │ │ │ └── strings_and_atoms.pl │ │ │ └── test_all.pl │ │ ├── foreign_inliner_tr.asr │ │ ├── foreign_inliner_tr.itf │ │ ├── foreign_inliner_tr.pl │ │ ├── foreign_inliner_tr.po │ │ ├── foreign_interface.pl │ │ ├── foreign_interface_doc.pl │ │ ├── foreign_interface_ops.pl │ │ ├── foreign_interface_properties.asr │ │ ├── foreign_interface_properties.itf │ │ ├── foreign_interface_properties.pl │ │ ├── foreign_interface_properties.po │ │ ├── foreign_interface_tr.itf │ │ ├── foreign_interface_tr.pl │ │ ├── foreign_interface_tr.po │ │ └── foreign_interface_ttrs.pl │ ├── format.asr │ ├── format.ast │ ├── format.itf │ ├── format.pl │ ├── format.po │ ├── goal_trans.asr │ ├── goal_trans.itf │ ├── goal_trans.pl │ ├── goal_trans.po │ ├── hiord.pl │ ├── iso.pl │ ├── iso_byte_char.asr │ ├── iso_byte_char.ast │ ├── iso_byte_char.itf │ ├── iso_byte_char.pl │ ├── iso_byte_char.po │ ├── iso_doc.pl │ ├── iso_incomplete.asr │ ├── iso_incomplete.itf │ ├── iso_incomplete.pl │ ├── iso_incomplete.po │ ├── iso_misc.asr │ ├── iso_misc.ast │ ├── iso_misc.itf │ ├── iso_misc.pl │ ├── iso_misc.po │ ├── isomodes.pl │ ├── isomodes_doc.pl │ ├── libpaths.asr │ ├── libpaths.itf │ ├── libpaths.pl │ ├── libpaths.po │ ├── lists.asr │ ├── lists.ast │ ├── lists.itf │ ├── lists.pl │ ├── lists.po │ ├── llists.asr │ ├── llists.itf │ ├── llists.pl │ ├── llists.po │ ├── messages.asr │ ├── messages.ast │ ├── messages.itf │ ├── messages.pl │ ├── messages.po │ ├── metaprops │ │ ├── meta_props.itf │ │ ├── meta_props.pl │ │ ├── meta_props.po │ │ └── metaprops.pl │ ├── metatypes │ │ ├── expansion.itf │ │ ├── expansion.itf.old │ │ ├── expansion.pl │ │ ├── expansion.po │ │ ├── expansion.po.old │ │ └── metatypes.pl │ ├── miscprops.asr │ ├── miscprops.itf │ ├── miscprops.pl │ ├── miscprops.po │ ├── nodebug.pl │ ├── nonpure.pl │ ├── odd.asr │ ├── odd.ast │ ├── odd.itf │ ├── odd.pl │ ├── odd.po │ ├── old_database.asr │ ├── old_database.ast │ ├── old_database.itf │ ├── old_database.pl │ ├── old_database.po │ ├── operators.asr │ ├── operators.ast │ ├── operators.itf │ ├── operators.pl │ ├── operators.po │ ├── prelude.pl │ ├── prolog_sys.asr │ ├── prolog_sys.ast │ ├── prolog_sys.itf │ ├── prolog_sys.pl │ ├── prolog_sys.po │ ├── pure.pl │ ├── pure_doc.pl │ ├── read.asr │ ├── read.ast │ ├── read.itf │ ├── read.pl │ ├── read.po │ ├── regtypes │ │ ├── regtypes.itf │ │ ├── regtypes.pl │ │ ├── regtypes_doc.old │ │ ├── regtypes_doc.pl │ │ ├── regtypes_tr.itf │ │ ├── regtypes_tr.pl │ │ ├── regtypes_tr.po │ │ ├── regular_type_syntax │ │ └── writing_props │ ├── runtime_ops.pl │ ├── runtime_ops_doc.pl │ ├── runtime_ops_tr.itf │ ├── runtime_ops_tr.pl │ ├── runtime_ops_tr.po │ ├── sets.asr │ ├── sets.itf │ ├── sets.pl │ ├── sets.po │ ├── sort.asr │ ├── sort.ast │ ├── sort.itf │ ├── sort.pl │ ├── sort.po │ ├── srcbyrd │ │ ├── NODISTRIBUTE │ │ ├── srcbyrd.pl │ │ ├── srcbyrd_rt.itf │ │ ├── srcbyrd_rt.pl │ │ ├── srcbyrd_rt.po │ │ ├── srcbyrd_tr.itf │ │ ├── srcbyrd_tr.pl │ │ └── srcbyrd_tr.po │ ├── streams.asr │ ├── streams.itf │ ├── streams.pl │ ├── streams.po │ ├── strings.asr │ ├── strings.itf │ ├── strings.pl │ ├── strings.po │ ├── system.asr │ ├── system.ast │ ├── system.itf │ ├── system.pl │ ├── system.po │ ├── terms.asr │ ├── terms.itf │ ├── terms.pl │ ├── terms.po │ ├── tokenize.asr │ ├── tokenize.itf │ ├── tokenize.pl │ ├── tokenize.po │ ├── trace.pl │ ├── ttyout.asr │ ├── ttyout.ast │ ├── ttyout.itf │ ├── ttyout.pl │ ├── ttyout.po │ ├── types.old │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── basictypes.pl │ │ ├── fd_reg_type_lattice.pl │ │ ├── minitest.pl │ │ ├── pred_to_typedef.pl │ │ ├── regtypes_lattice.pl │ │ ├── type_exp.pl │ │ ├── type_ops.pl │ │ ├── typedef_to_pred.pl │ │ ├── types.pl │ │ └── types_basic.pl │ ├── write.asr │ ├── write.ast │ ├── write.itf │ ├── write.pl │ ├── write.po │ └── write_c │ │ ├── write_c.asr │ │ ├── write_c.itf │ │ ├── write_c.pl │ │ ├── write_c.po │ │ ├── write_tokens.asr │ │ ├── write_tokens.itf │ │ ├── write_tokens.pl │ │ └── write_tokens.po │ ├── library.development │ ├── NODISTRIBUTE │ ├── argnamesvv │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── argnames_doc.pl │ │ ├── argnamesvv.pl │ │ ├── argnamesvv_trans.pl │ │ ├── ex.pl │ │ ├── ex2.pl │ │ ├── examples │ │ │ ├── simple_db.pl │ │ │ └── zebra_argnames.pl │ │ └── simple_db.pl │ ├── benchmarking │ │ ├── DATA │ │ ├── Makefile │ │ ├── bench-new.pl │ │ ├── bench-nrev.pl │ │ ├── bench.dat │ │ ├── benchmarking.pl │ │ ├── clock.pl │ │ ├── doc │ │ │ ├── LPSETTINGS.pl │ │ │ └── benchmarkingrefs.el │ │ ├── popen_read.pl │ │ └── testbench.pl │ ├── blackboard │ │ ├── bb_client.pl │ │ └── bb_server.pl │ ├── compat.pl │ ├── curses │ │ ├── curses.pl │ │ ├── prueba_cursores.pl │ │ └── term_control.c │ ├── distribution │ │ ├── Makefile │ │ ├── TODO │ │ ├── actmodtr.pl │ │ ├── ciao_tcltk.pl │ │ ├── ciaod.pl │ │ ├── ciaod_bb.pl │ │ ├── ciaod_expansion.pl │ │ ├── ciaod_h │ │ ├── ciaod_kludge.pl │ │ ├── examples │ │ │ ├── act.pl │ │ │ ├── actfix.pl │ │ │ ├── ask-bench.cl │ │ │ ├── bomb.xbm │ │ │ ├── bombs.cl │ │ │ ├── dist_comm.cl │ │ │ ├── foo.pl │ │ │ ├── pro.cl │ │ │ ├── pro_ask.cl │ │ │ └── threads.cl │ │ ├── exec_data.pl │ │ ├── plane.xbm │ │ └── planes.pl │ ├── exec │ │ ├── Makefile │ │ ├── docs │ │ ├── h.pl │ │ ├── hello.pl │ │ ├── mel.pl │ │ ├── mel_no_use_module.pl │ │ ├── nl.pl │ │ ├── p.pl │ │ ├── prolog │ │ │ ├── Makefile │ │ │ ├── mod_xrf │ │ │ ├── o │ │ │ ├── operators.pl.bak │ │ │ ├── to_load │ │ │ └── toplev.pl.bak │ │ ├── s │ │ ├── test.pl │ │ ├── write.pl │ │ └── writenl.pl │ ├── foreign.pl │ ├── freeze.pl │ ├── gauge.pl │ ├── grefs.pl │ ├── ho_test │ │ ├── ho.pl │ │ ├── ho_ciao_example.pl │ │ ├── ho_ciao_old.pl │ │ ├── ho_module_tr.pl │ │ ├── ho_stack.pl │ │ ├── ho_tak_test.pl │ │ ├── hotak_ciao.pl │ │ ├── modules.pl │ │ ├── modules_argnames.bak │ │ ├── modules_argnames.pl │ │ └── modules_hiord.pl │ ├── lazy_functions │ │ ├── functions.pl │ │ ├── functionstr.pl │ │ ├── ops.pl │ │ └── test.pl │ ├── listio.pl │ ├── math │ │ ├── Makefile │ │ ├── NOTE │ │ ├── b │ │ │ ├── NODISTRIBUTE │ │ │ └── math.pl │ │ ├── common_headers.h │ │ ├── math.pl │ │ ├── math_c.c │ │ └── math_c.pl │ ├── multi_dynamic │ │ ├── NODISTRIBUTE │ │ ├── examples │ │ │ └── test.pl │ │ ├── multi_dynamic.pl │ │ └── multi_dynamic.pl-all │ ├── proTcXl2.1 │ │ ├── CHANGES │ │ ├── Makefile │ │ ├── Makefile-orig │ │ ├── README │ │ ├── TAGS │ │ ├── TODO │ │ ├── aclocal.m4 │ │ ├── dirs.pl │ │ ├── doc │ │ ├── example_xlib.pl │ │ ├── examples.pl │ │ ├── examples2.pl │ │ ├── foreign.pl │ │ ├── libinit.a │ │ ├── local │ │ │ ├── init │ │ │ ├── loyd.tcl │ │ │ ├── tclIndex │ │ │ └── tkext.pl │ │ ├── other │ │ │ ├── Makefile.in │ │ │ ├── config.status │ │ │ ├── configure │ │ │ ├── configure.in │ │ │ ├── etk.pl │ │ │ ├── misc_eclipse.pl │ │ │ ├── qtk.pl │ │ │ └── stk.pl │ │ ├── outdated │ │ │ ├── tcl_utils.pl │ │ │ ├── tk_events.pl │ │ │ └── tk_events_sicstus.pl │ │ ├── police.pl │ │ ├── protcl.c │ │ ├── refs │ │ ├── string_utils.pl │ │ ├── tcl.pl │ │ ├── tk.c │ │ ├── tk.pl │ │ ├── tkAppInit.c │ │ ├── tk_common.pl │ │ ├── tr_xlib.pl │ │ ├── trigo.c │ │ ├── xlib.c │ │ ├── xlib.pl │ │ └── xlib_init.pl │ ├── proTcxl.ps.gz │ ├── regexp.pl │ ├── stringread.pl │ ├── text_processing.pl │ ├── transactions │ │ ├── Manual │ │ │ ├── Makefile │ │ │ └── SETTINGS │ │ ├── Tests │ │ │ ├── demo_1.pl │ │ │ ├── trans_test_dyn.pl │ │ │ ├── trans_test_pers.pl │ │ │ ├── trans_test_pers_co.pl │ │ │ └── trip_example.tar │ │ ├── db │ │ │ └── demo │ │ │ │ └── balance_2.pl │ │ ├── demo.pl │ │ ├── demo_co.pl │ │ ├── log │ │ │ └── transaction_logging │ │ │ │ ├── dbmsj_3.pl │ │ │ │ └── transaction_id_1.pl │ │ ├── transaction_concurrency.pl │ │ ├── transaction_internal.pl │ │ ├── transaction_logging.pl │ │ ├── transaction_recovery.pl │ │ ├── transactions.pl │ │ ├── transactions_doc.pl │ │ └── transactionstr.pl │ ├── vrml │ │ ├── ProVRML.pl │ │ ├── Test │ │ │ ├── WRL │ │ │ │ ├── 5041101.wrl │ │ │ │ ├── 5041102.wrl │ │ │ │ ├── 5041103.wrl │ │ │ │ ├── 5041104.wrl │ │ │ │ ├── 5041105.wrl │ │ │ │ ├── 5041106.wrl │ │ │ │ ├── 5041107.wrl │ │ │ │ ├── 5041108.wrl │ │ │ │ ├── 5041109.wrl │ │ │ │ ├── 5041110.wrl │ │ │ │ ├── 5041111.wrl │ │ │ │ ├── 5041112.wrl │ │ │ │ ├── 5041113.wrl │ │ │ │ ├── 5041114.wrl │ │ │ │ ├── 5041115.wrl │ │ │ │ ├── 5041116.wrl │ │ │ │ ├── 5041117.wrl │ │ │ │ ├── 5041118.wrl │ │ │ │ ├── BezierSurface.wrl │ │ │ │ ├── Circle.wrl │ │ │ │ ├── Cone.wrl │ │ │ │ ├── Dome.wrl │ │ │ │ ├── Helix.wrl │ │ │ │ ├── Input6DOF.wrl │ │ │ │ ├── NurbsCurve.wrl │ │ │ │ ├── NurbsRevolve.wrl │ │ │ │ ├── NurbsSurface.wrl │ │ │ │ ├── Refine.wrl │ │ │ │ ├── Region.wrl │ │ │ │ ├── Sphere.wrl │ │ │ │ ├── Square.wrl │ │ │ │ ├── Squig.wrl │ │ │ │ ├── Torus.wrl │ │ │ │ ├── Triangle.wrl │ │ │ │ ├── WineGlass.wrl │ │ │ │ ├── alcove.wrl │ │ │ │ ├── basic.wrl │ │ │ │ ├── bathroom.wrl │ │ │ │ ├── body.wrl │ │ │ │ ├── box.wrl │ │ │ │ ├── bsphouse.wrl │ │ │ │ ├── chess.wrl │ │ │ │ ├── closet.wrl │ │ │ │ ├── cone2.wrl │ │ │ │ ├── door11.wrl │ │ │ │ ├── door12.wrl │ │ │ │ ├── door15.wrl │ │ │ │ ├── door17.wrl │ │ │ │ ├── door21.wrl │ │ │ │ ├── door24.wrl │ │ │ │ ├── door25.wrl │ │ │ │ ├── door42.wrl │ │ │ │ ├── door51.wrl │ │ │ │ ├── door52.wrl │ │ │ │ ├── empty.wrl │ │ │ │ ├── floor.wrl │ │ │ │ ├── garage.wrl │ │ │ │ ├── house.wrl │ │ │ │ ├── kitchen.wrl │ │ │ │ ├── living.wrl │ │ │ │ ├── nod.wrl │ │ │ │ ├── nodman.wrl │ │ │ │ ├── porch.wrl │ │ │ │ ├── reghouse.wrl │ │ │ │ ├── stickman.wrl │ │ │ │ ├── storage.wrl │ │ │ │ ├── test.wrl │ │ │ │ ├── wall.wrl │ │ │ │ ├── workshop.wrl │ │ │ │ └── x.wrl │ │ │ ├── c0.wrl │ │ │ ├── c1.wrl │ │ │ ├── c10.wrl │ │ │ ├── c2.term │ │ │ ├── c2.wrl │ │ │ ├── c3.wrl │ │ │ ├── c4.wrl │ │ │ ├── c5.wrl │ │ │ ├── c6.terms │ │ │ ├── c6.wrl │ │ │ ├── c7.wrl │ │ │ ├── c8.wrl │ │ │ ├── c9.wrl │ │ │ ├── f0.wrl │ │ │ ├── f1.wrl │ │ │ ├── f2.wrl │ │ │ ├── f3.wrl │ │ │ ├── f4.wrl │ │ │ ├── f5.wrl │ │ │ ├── f6.wrl │ │ │ ├── f7.wrl │ │ │ ├── f8.wrl │ │ │ ├── f9.wrl │ │ │ ├── o6.wrl │ │ │ ├── o7.wrl │ │ │ ├── o8.wrl │ │ │ ├── p0.wrl │ │ │ ├── p1.wrl │ │ │ ├── p10.wrl │ │ │ ├── p11.wrl │ │ │ ├── p12.wrl │ │ │ ├── p2.wrl │ │ │ ├── p3.wrl │ │ │ ├── p4.wrl │ │ │ ├── p5.wrl │ │ │ ├── p6.wrl │ │ │ ├── p7.wrl │ │ │ ├── p8.wrl │ │ │ ├── p9.wrl │ │ │ ├── signal0.term │ │ │ ├── signal0.wrl │ │ │ ├── t0.wrl │ │ │ ├── t1.wrl │ │ │ ├── t2.wrl │ │ │ ├── t3.wrl │ │ │ ├── t4.wrl │ │ │ ├── t5.wrl │ │ │ ├── t6.wrl │ │ │ ├── t7.wrl │ │ │ └── trash0.wrl │ │ ├── boundary.pl │ │ ├── check.pl │ │ ├── dictionary.pl │ │ ├── dictionary_tree.pl │ │ ├── doc │ │ │ ├── LPSETTINGS.pl │ │ │ ├── ProVRML.co │ │ │ ├── ProVRML.cos │ │ │ ├── ProVRML.cp │ │ │ ├── ProVRML.cps │ │ │ ├── ProVRML.fn │ │ │ ├── ProVRML.fns │ │ │ ├── ProVRML.ky │ │ │ ├── ProVRML.kys │ │ │ ├── ProVRML.mo │ │ │ ├── ProVRML.mos │ │ │ ├── ProVRML.pd │ │ │ ├── ProVRML.pds │ │ │ ├── ProVRML.pg │ │ │ ├── ProVRML.pgs │ │ │ ├── ProVRML.pr │ │ │ ├── ProVRML.prs │ │ │ ├── ProVRML.tp │ │ │ ├── ProVRML.tps │ │ │ ├── ProVRML.ug │ │ │ ├── ProVRML.ugs │ │ │ ├── ProVRML.vr │ │ │ ├── ProVRML.vrs │ │ │ └── ProVRMLrefs.el │ │ ├── error.pl │ │ ├── field_type.pl │ │ ├── field_value.pl │ │ ├── field_value_check.pl │ │ ├── generator.pl │ │ ├── generator_util.pl │ │ ├── internal_types.pl │ │ ├── io.pl │ │ ├── lookup.pl │ │ ├── parser.pl │ │ ├── parser_dirty.pl │ │ ├── parser_util.pl │ │ ├── possible.pl │ │ ├── possible_org.pl │ │ ├── tokeniser.pl │ │ └── vrml.pl │ └── xref.boris.pl │ └── library │ ├── Makefile.old │ ├── actmods │ ├── README │ ├── actmod_server.itf │ ├── actmod_server.pl │ ├── actmod_server.po │ ├── actmodrt.asr │ ├── actmodrt.itf │ ├── actmodrt.pl │ ├── actmodrt.po │ ├── actmods.pl │ ├── actmods_doc.pl │ ├── actmodtr.itf │ ├── actmodtr.pl │ ├── actmodtr.po │ ├── examples │ │ ├── Makefile │ │ ├── agents │ │ │ ├── Makefile │ │ │ ├── agent1.pl │ │ │ ├── agent2.pl │ │ │ ├── send.pl │ │ │ └── test.pl │ │ ├── simple_client.pl │ │ ├── simple_client_with_main.pl │ │ ├── simple_server.pl │ │ ├── webbased_server │ │ │ ├── Makefile │ │ │ └── webbased_server.pl │ │ └── webbased_simple_client.pl │ ├── filebased_locate.asr │ ├── filebased_locate.itf │ ├── filebased_locate.pl │ ├── filebased_locate.po │ ├── filebased_publish.itf │ ├── filebased_publish.pl │ ├── filebased_publish.po │ ├── platformbased_locate.itf │ ├── platformbased_locate.pl │ ├── platformbased_locate.po │ ├── platformbased_publish.itf │ ├── platformbased_publish.pl │ ├── platformbased_publish.po │ ├── tmpbased_common.asr │ ├── tmpbased_common.itf │ ├── tmpbased_common.pl │ ├── tmpbased_common.po │ ├── tmpbased_locate.itf │ ├── tmpbased_locate.pl │ ├── tmpbased_locate.po │ ├── tmpbased_publish.itf │ ├── tmpbased_publish.pl │ ├── tmpbased_publish.po │ ├── webbased_common.asr │ ├── webbased_common.itf │ ├── webbased_common.pl │ ├── webbased_common.po │ ├── webbased_locate.itf │ ├── webbased_locate.pl │ ├── webbased_locate.po │ ├── webbased_publish.itf │ ├── webbased_publish.pl │ ├── webbased_publish.po │ ├── webserver_publish.itf │ ├── webserver_publish.pl │ └── webserver_publish.po │ ├── agent │ ├── agent.pl │ ├── agent_call.itf │ ├── agent_call.pl │ ├── agent_call.po │ ├── agent_doc.pl │ ├── agent_tr.itf │ ├── agent_tr.pl │ ├── agent_tr.po │ └── examples │ │ ├── another.pl │ │ └── one.pl │ ├── agents │ ├── NODISTRIBUTE │ ├── agents.pl │ ├── agents_class.pl │ ├── agents_tr.itf │ ├── agents_tr.pl │ ├── agents_tr.po │ ├── examples │ │ ├── NOCOMPILE │ │ ├── answer.bak │ │ ├── answer.pl │ │ ├── answer_tr.pl │ │ ├── answer_tr2.bak │ │ ├── asker.pl │ │ ├── asker_tr.pl │ │ ├── asker_tr2.bak │ │ ├── bug.pl │ │ ├── generic.pl │ │ ├── hprueba.pl │ │ ├── mapmanager.pl │ │ ├── plat.pl │ │ ├── prueba.pl │ │ └── specific.pl │ └── protocols │ │ ├── NOCOMPILE │ │ ├── ask.pl │ │ ├── ask │ │ ├── ask.pl │ │ ├── ask_answer.pl │ │ ├── ask_asker.pl │ │ └── messages.pl │ │ ├── ask_inform.pl │ │ ├── askinform.pl │ │ ├── fipa │ │ ├── contract_net │ │ │ ├── contract_net.pl │ │ │ ├── contract_net_initiator.pl │ │ │ └── contract_net_participant.pl │ │ ├── englisg_auction │ │ │ ├── english_auction.pl │ │ │ ├── english_auction_initiator.pl │ │ │ └── english_auction_participant.pl │ │ ├── iterated_contract_net │ │ │ ├── iterated_contract_net.pl │ │ │ ├── iterated_contract_net_initiator.pl │ │ │ └── iterated_contract_net_participant.pl │ │ ├── messages.pl │ │ ├── query │ │ │ ├── query.pl │ │ │ ├── query_initiator.pl │ │ │ └── query_participant.pl │ │ ├── request │ │ │ ├── request.pl │ │ │ ├── request_initiator.pl │ │ │ └── request_participant.pl │ │ └── request_when │ │ │ ├── request_when.pl │ │ │ ├── request_when_initiator.pl │ │ │ └── request_when_participant.pl │ │ └── inform_ask.pl │ ├── amp │ ├── .NOCOMPILE │ ├── .NODISTRIBUTE │ ├── amp.pl │ ├── amp_det.pl │ └── ampersands.pl │ ├── ams │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── TODO │ ├── actmod.pl │ ├── ams.pl │ ├── amsbased_publish.pl │ ├── amsrt.pl │ ├── amstr.pl │ ├── examples │ │ ├── README │ │ ├── actmods │ │ │ ├── README │ │ │ ├── active.pl │ │ │ ├── active_ams_client.pl │ │ │ └── app.pl │ │ ├── app.pl │ │ ├── class │ │ │ ├── README │ │ │ ├── caca.pl │ │ │ ├── expanded │ │ │ │ ├── caca │ │ │ │ ├── objects_rt.pl │ │ │ │ ├── objects_rt_ams_client.pl │ │ │ │ ├── stack.pl │ │ │ │ ├── test.pl │ │ │ │ └── use_stack.pl │ │ │ ├── stack.orig.pl │ │ │ ├── stack.pl │ │ │ ├── stack_ams_client.pl │ │ │ ├── stack_co.dup.pl │ │ │ ├── test.pl │ │ │ ├── use_stack.pl │ │ │ └── use_stack_module.pl │ │ ├── file.pl │ │ ├── file_ams_client.pl │ │ ├── server_log │ │ └── strapper_log │ ├── server.pl │ ├── socket_serve.pl │ ├── strapper.pl │ └── test │ │ ├── ams.pl │ │ ├── ams2.pl │ │ ├── config.pl │ │ └── example │ │ ├── app.pl │ │ ├── conf.pl │ │ ├── file.pl │ │ ├── file_client.pl │ │ └── file_server.pl │ ├── andorra │ ├── andorra.pl │ ├── andorra_builtins.asr │ ├── andorra_builtins.itf │ ├── andorra_builtins.pl │ ├── andorra_builtins.po │ ├── andorra_builtins_exports.pl │ ├── andorra_doc.pl │ ├── andorra_rt.asr │ ├── andorra_rt.itf │ ├── andorra_rt.pl │ ├── andorra_rt.po │ ├── andorra_tr.itf │ ├── andorra_tr.pl │ ├── andorra_tr.po │ ├── andorraops.pl │ ├── benchmarks │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── bench.tex │ │ ├── bench2.pl │ │ ├── crypt.pl │ │ ├── crypt_and.pl │ │ ├── crypt_and1p1.pl │ │ ├── crypt_and_user.pl │ │ ├── defineq.pl │ │ ├── dia_sums.pl │ │ ├── dia_sums_and.pl │ │ ├── dia_sums_and1p1.pl │ │ ├── dia_sums_and_user.pl │ │ ├── ejem1.pl │ │ ├── fib.pl │ │ ├── fib_and.pl │ │ ├── fib_and1p1.pl │ │ ├── fib_and_user.pl │ │ ├── foo.pl │ │ ├── map.pl │ │ ├── map_and.pl │ │ ├── map_and1p1.pl │ │ ├── map_and_user.pl │ │ ├── money.pl │ │ ├── money_and.pl │ │ ├── money_and1p1.pl │ │ ├── money_and_user.pl │ │ ├── mqu.pl │ │ ├── mqu_and.pl │ │ ├── mqu_and1p1.pl │ │ ├── mqu_and_user.pl │ │ ├── mutest.pl │ │ ├── mutest_and.pl │ │ ├── mutest_and1p1.pl │ │ ├── mutest_and_user.pl │ │ ├── qe_andorra_lib.pl │ │ ├── qu_evan.pl │ │ ├── qu_evan_and.pl │ │ ├── qu_evan_and1p1.pl │ │ ├── qu_evan_and_user.pl │ │ ├── qu_vitor.pl │ │ ├── qu_vitor_and.pl │ │ ├── qu_vitor_and1p1.pl │ │ └── qu_vitor_and_user.pl │ └── examples │ │ ├── NOCOMPILE │ │ ├── crypt.pl │ │ ├── crypt_and.pl │ │ ├── crypt_and_user.pl │ │ ├── map.pl │ │ ├── map_and.pl │ │ ├── map_and_user.pl │ │ ├── money.pl │ │ ├── money_and.pl │ │ ├── money_and_user.pl │ │ ├── mqu.pl │ │ ├── mqu_and.pl │ │ └── mqu_and_user.pl │ ├── andprolog │ ├── andprolog.pl │ ├── andprolog_ops.pl │ ├── andprolog_rt.asr │ ├── andprolog_rt.ast │ ├── andprolog_rt.itf │ ├── andprolog_rt.pl │ ├── andprolog_rt.po │ ├── examples │ │ ├── backtracking.itf │ │ ├── backtracking.pl │ │ ├── backtracking.po │ │ ├── fibo.itf │ │ ├── fibo.pl │ │ ├── fibo.po │ │ ├── qsort.itf │ │ ├── qsort.pl │ │ └── qsort.po │ └── old_andprolog │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── README │ │ ├── andprolog.pl │ │ ├── andprolog_doc.pl │ │ ├── andprolog_ops.pl │ │ ├── andprolog_rt.pl │ │ ├── examples │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ └── fibo.pl │ │ └── nodist │ │ ├── .NODISTRIBUTE │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── ap.pl │ │ ├── apdet.pl │ │ ├── apdet_clean.pl │ │ ├── fibo.pl │ │ └── several_sols.pl │ ├── argnames │ ├── argnames.pl │ ├── argnames_doc.pl │ ├── argnames_trans.itf │ ├── argnames_trans.pl │ ├── argnames_trans.po │ └── examples │ │ ├── NOCOMPILE │ │ ├── simple_db.pl │ │ └── zebra_argnames.pl │ ├── argnamesv │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── argnames_doc.pl │ ├── argnamesv.pl │ ├── argnamesv_trans.pl │ ├── examples │ │ ├── NOCOMPILE │ │ ├── simple_db.pl │ │ └── zebra_argnames.pl │ └── simple_db.pl │ ├── arithpreds.asr │ ├── arithpreds.itf │ ├── arithpreds.pl │ ├── arithpreds.po │ ├── arrays.itf │ ├── arrays.pl │ ├── arrays.po │ ├── assoc.itf │ ├── assoc.pl │ ├── assoc.po │ ├── atom2term.asr │ ├── atom2term.itf │ ├── atom2term.pl │ ├── atom2term.po │ ├── attribute_dump │ ├── NODISTRIBUTE │ ├── attribute_dump.itf │ ├── attribute_dump.pl │ ├── attribute_dump.po │ ├── attrvars.itf │ ├── attrvars.pl │ ├── attrvars.po │ ├── clp_props.itf │ ├── clp_props.pl │ ├── clp_props.po │ ├── clp_reify.itf │ ├── clp_reify.pl │ └── clp_reify.po │ ├── bf │ ├── af.pl │ ├── aftr.itf │ ├── aftr.pl │ ├── aftr.po │ ├── bf.pl │ ├── bf_doc.pl │ ├── bftr.itf │ ├── bftr.pl │ ├── bftr.po │ ├── examples │ │ ├── chain.pl │ │ ├── sublistapp.itf │ │ ├── sublistapp.pl │ │ └── sublistapp.po │ └── ops.pl │ ├── bitcodesets.itf │ ├── bitcodesets.pl │ ├── bitcodesets.po │ ├── byrdbox │ ├── byrd.asr │ ├── byrd.itf │ ├── byrd.pl │ ├── byrd.po │ ├── byrdbox.pl │ ├── byrdbox_expand.itf │ ├── byrdbox_expand.pl │ └── byrdbox_expand.po │ ├── cges.pl │ ├── chip │ ├── chip.pl │ ├── chip_decl.pl │ ├── chip_exp.itf │ ├── chip_exp.pl │ ├── chip_exp.po │ ├── chip_ops.pl │ └── chip_ops_boot.pl │ ├── ciaodevelop │ ├── NODISTRIBUTE │ ├── ciaodevelop.pl │ ├── ciaopaths.itf │ ├── ciaopaths.pl │ └── ciaopaths.po │ ├── ciaopp │ └── api │ │ ├── api_internal_dec.pl │ │ ├── ciaopp_api.pl │ │ ├── menu │ │ ├── menu.pl │ │ ├── menu_op.pl │ │ ├── menu_tr.itf │ │ ├── menu_tr.pl │ │ └── menu_tr.po │ │ ├── xtchecks_msg.asr │ │ ├── xtchecks_msg.itf │ │ ├── xtchecks_msg.pl │ │ └── xtchecks_msg.po │ ├── class │ ├── benchmarks │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── assrt │ │ │ ├── NODISTRIBUTE │ │ │ ├── assrt_at_class.pl │ │ │ ├── assrt_at_module.pl │ │ │ ├── do_bench │ │ │ └── main_on_assrt.pl │ │ ├── benchmark │ │ ├── call │ │ │ ├── NODISTRIBUTE │ │ │ ├── non_optimized │ │ │ │ ├── call_at_class.pl │ │ │ │ ├── call_at_module.pl │ │ │ │ ├── do_bench │ │ │ │ ├── non_optimized │ │ │ │ └── non_optimized.pl │ │ │ ├── obj_vs_module │ │ │ │ ├── call_at_class.pl │ │ │ │ ├── call_at_module.pl │ │ │ │ ├── do_bench │ │ │ │ └── obj_vs_module.pl │ │ │ ├── optimized │ │ │ │ ├── call_at_class.pl │ │ │ │ ├── call_at_module.pl │ │ │ │ ├── do_bench │ │ │ │ ├── optimized │ │ │ │ └── optimized.pl │ │ │ └── staticobj_vs_module │ │ │ │ ├── call_at_class.pl │ │ │ │ ├── call_at_module.pl │ │ │ │ ├── do_bench │ │ │ │ ├── staticobj_vs_module │ │ │ │ └── staticobj_vs_module.pl │ │ └── new │ │ │ ├── NODISTRIBUTE │ │ │ ├── destroy │ │ │ ├── destroy │ │ │ ├── destroy.pl │ │ │ ├── destroy_class.pl │ │ │ ├── do_bench │ │ │ ├── plot │ │ │ └── psplot │ │ │ ├── no_destroy │ │ │ ├── atom_destruction.ps │ │ │ ├── do_bench │ │ │ ├── no_destroy │ │ │ ├── no_destroy.pl │ │ │ ├── no_destroy_class.pl │ │ │ ├── no_recycling.ps │ │ │ ├── plot │ │ │ ├── psplot │ │ │ └── recycling.ps │ │ │ ├── on_attr │ │ │ ├── bench.old │ │ │ ├── class100attr.pl │ │ │ ├── class10attr.pl │ │ │ ├── class1attr.pl │ │ │ ├── class200attr.pl │ │ │ ├── class350attr.pl │ │ │ ├── class500attr.pl │ │ │ ├── class50attr.pl │ │ │ ├── class5attr.pl │ │ │ ├── do_bench │ │ │ ├── main_on_attr │ │ │ ├── main_on_attr.pl │ │ │ ├── no_atom_destruction.ps │ │ │ ├── on_attr.tex │ │ │ ├── on_attr_old.ps │ │ │ ├── on_attr_old_impl.ps │ │ │ ├── plot │ │ │ ├── print_plot │ │ │ └── psplot │ │ │ ├── on_inheritance │ │ │ ├── bench │ │ │ ├── class0inh.pl │ │ │ ├── class10inh.pl │ │ │ ├── class1inh.pl │ │ │ ├── class2inh.pl │ │ │ ├── class3inh.pl │ │ │ ├── class4inh.pl │ │ │ ├── class5inh.pl │ │ │ ├── class6inh.pl │ │ │ ├── class7inh.pl │ │ │ ├── class8inh.pl │ │ │ ├── class9inh.pl │ │ │ ├── do_bench │ │ │ ├── main_on_inheritance.pl │ │ │ └── plot │ │ │ ├── on_method │ │ │ ├── a_psplot.on_method │ │ │ ├── bench │ │ │ ├── bench.old │ │ │ ├── class100method.pl │ │ │ ├── class10method.pl │ │ │ ├── class1method.pl │ │ │ ├── class200method.pl │ │ │ ├── class500method.pl │ │ │ ├── class50method.pl │ │ │ ├── class5method.pl │ │ │ ├── do_bench │ │ │ ├── main_on_method.pl │ │ │ ├── on_method.ps │ │ │ ├── plot │ │ │ └── psplot │ │ │ └── symmetry_test │ │ │ ├── symm.pl │ │ │ └── symmclass.pl │ ├── class.asr │ ├── class.itf │ ├── class.pl │ ├── class_doc.pl │ ├── class_error_doc.pl │ ├── class_error_reporting.asr │ ├── class_error_reporting.itf │ ├── class_error_reporting.pl │ ├── class_error_reporting.po │ ├── class_itf.asr │ ├── class_itf.itf │ ├── class_itf.pl │ ├── class_itf.po │ ├── class_rt.asr │ ├── class_rt.itf │ ├── class_rt.pl │ ├── class_rt.po │ ├── class_tr.itf │ ├── class_tr.pl │ ├── class_tr.po │ ├── class_tr_aux.pl │ ├── examples │ │ ├── README │ │ ├── generic.pl │ │ ├── geometry │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── box_class.pl │ │ │ ├── canvas_class.pl │ │ │ ├── circle_class.pl │ │ │ ├── dancing_shapes.pl │ │ │ ├── disco_class.pl │ │ │ ├── geometry1.pl │ │ │ ├── geometry2.pl │ │ │ ├── geometry_man.pl │ │ │ ├── mobile.pl │ │ │ ├── oval_class.pl │ │ │ ├── poly_class.pl │ │ │ ├── rectangle_class.pl │ │ │ └── shape_class.pl │ │ ├── multiple_inh │ │ │ ├── README │ │ │ ├── pseudo_stack.pl │ │ │ ├── rogue.pl │ │ │ ├── rogue_sorcerer.pl │ │ │ └── sorcerer.pl │ │ ├── persistency │ │ │ ├── Makefile │ │ │ ├── NODISTRIBUTE │ │ │ ├── persistency_example.pl │ │ │ ├── persistent_class_example.pl │ │ │ └── persistent_object │ │ ├── queens │ │ │ ├── README │ │ │ ├── nqueens.itf │ │ │ ├── nqueens.pl │ │ │ ├── nqueens.po │ │ │ ├── nulqueen.asr │ │ │ ├── nulqueen.itf │ │ │ ├── nulqueen.pl │ │ │ ├── queen.asr │ │ │ ├── queen.itf │ │ │ ├── queen.pl │ │ │ ├── write_board.asr │ │ │ ├── write_board.itf │ │ │ ├── write_board.pl │ │ │ └── write_board.po │ │ ├── remote │ │ │ ├── NODISTRIBUTE │ │ │ ├── client.itf │ │ │ ├── client.pl │ │ │ ├── client.po │ │ │ ├── stack_remote.itf │ │ │ ├── stack_remote.pl │ │ │ └── stack_remote.po │ │ ├── sockets │ │ │ ├── NODISTRIBUTE │ │ │ ├── client_socket.pl │ │ │ ├── oo_socket.pl │ │ │ └── server_socket.pl │ │ ├── specific.pl │ │ ├── stack.asr │ │ ├── stack.itf │ │ ├── stack.pl │ │ ├── use_stack.itf │ │ ├── use_stack.pl │ │ └── use_stack.po │ ├── library │ │ ├── NODISTRIBUTE │ │ ├── file_persistent_streamer.pl │ │ ├── persistent.pl │ │ └── persistent_streamer.pl │ ├── virtual.asr │ ├── virtual.itf │ ├── virtual.pl │ └── virtual.po │ ├── clp.pl │ ├── clp_attr.pl │ ├── clp_dump.pl │ ├── clp_rt.pl │ ├── clpcompiler.pl │ ├── clpq │ ├── NOCOMPILE │ ├── clpcompiler_q.asr │ ├── clpcompiler_q.itf │ ├── clpcompiler_q.pl │ ├── clpcompiler_q.po │ ├── clpq.pl │ ├── clpq_attr.asr │ ├── clpq_attr.itf │ ├── clpq_attr.pl │ ├── clpq_attr.po │ ├── clpq_doc.pl │ ├── clpq_dump.asr │ ├── clpq_dump.itf │ ├── clpq_dump.pl │ ├── clpq_dump.po │ ├── clpq_meta.asr │ ├── clpq_meta.itf │ ├── clpq_meta.pl │ ├── clpq_meta.po │ ├── clpq_rt.asr │ ├── clpq_rt.itf │ ├── clpq_rt.pl │ ├── clpq_rt.po │ ├── clpq_src.pl │ ├── clpqtr.itf │ ├── clpqtr.pl │ ├── clpqtr.po │ ├── eval_q.asr │ ├── eval_q.itf │ ├── eval_q.pl │ ├── eval_q.po │ ├── expand_q.itf │ ├── expand_q.pl │ ├── expand_q.po │ ├── solver_q.asr │ ├── solver_q.itf │ ├── solver_q.pl │ └── solver_q.po │ ├── clpqr-common │ ├── Makefile-common │ ├── TO-DO │ ├── clp_attr.pl │ ├── clp_dump.pl │ ├── clp_meta.pl │ ├── clp_rt.pl │ ├── clpcompiler.pl │ ├── clpqr_doc.pl.DMCAI │ ├── clptr.pl │ ├── examples │ │ ├── Makefile │ │ ├── critical.clp │ │ ├── critical.pl │ │ ├── fib_q.pl │ │ ├── fib_r.pl │ │ ├── fibpl.pl │ │ ├── laplace.clp │ │ ├── laplace.pl │ │ ├── mmatrix_q.pl │ │ ├── mmatrix_r.pl │ │ ├── nqueens_q.pl │ │ └── small_incomplete_not_working │ │ │ ├── NODISTRIBUTE │ │ │ ├── fib.pl │ │ │ ├── fibclpr.pl │ │ │ ├── mmatrix.pl │ │ │ ├── mmult.pl │ │ │ ├── nqueens_q.pl │ │ │ ├── power.pl │ │ │ └── t.pl │ ├── fourier_motzkin.pl │ ├── nf.pl │ ├── nl_eval.pl │ ├── ops.pl │ ├── simplex.pl │ └── solve.pl │ ├── clpr │ ├── NOCOMPILE │ ├── clpcompiler_r.asr │ ├── clpcompiler_r.itf │ ├── clpcompiler_r.pl │ ├── clpcompiler_r.po │ ├── clpr.pl │ ├── clpr_attr.asr │ ├── clpr_attr.itf │ ├── clpr_attr.pl │ ├── clpr_attr.po │ ├── clpr_doc.pl │ ├── clpr_dump.asr │ ├── clpr_dump.itf │ ├── clpr_dump.pl │ ├── clpr_dump.po │ ├── clpr_meta.asr │ ├── clpr_meta.itf │ ├── clpr_meta.pl │ ├── clpr_meta.po │ ├── clpr_rt.asr │ ├── clpr_rt.itf │ ├── clpr_rt.pl │ ├── clpr_rt.po │ ├── clpr_src.pl │ ├── clprtr.itf │ ├── clprtr.pl │ ├── clprtr.po │ ├── eval_r.asr │ ├── eval_r.itf │ ├── eval_r.pl │ ├── eval_r.po │ ├── expand_r.itf │ ├── expand_r.pl │ ├── expand_r.po │ ├── solver_r.asr │ ├── solver_r.itf │ ├── solver_r.pl │ └── solver_r.po │ ├── conc_aggregates.asr │ ├── conc_aggregates.ast │ ├── conc_aggregates.itf │ ├── conc_aggregates.pl │ ├── conc_aggregates.po │ ├── concurrency │ ├── concurrency.asr │ ├── concurrency.ast │ ├── concurrency.itf │ ├── concurrency.pl │ ├── concurrency.po │ └── examples │ │ ├── Makefile │ │ ├── README │ │ ├── e.pl │ │ └── examples.pl │ ├── connections │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── fipa │ │ ├── lisp_syntax_fipa.pl │ │ ├── lisp_syntax_term.pl │ │ ├── lisp_syntax_xml.pl │ │ ├── server.pl │ │ ├── test.pl │ │ └── xml_syntax_fipa.pl │ ├── http │ │ ├── client.pl │ │ ├── fetch.pl │ │ ├── not_found.html │ │ ├── prueba.html │ │ └── server.pl │ ├── on_http.pl │ ├── on_sockets.pl │ ├── soap │ │ ├── client_vip.pl │ │ ├── im-rm-im.pl │ │ ├── pm-im-pm.pl │ │ ├── server2.pl │ │ └── server_vip.pl │ └── spy │ │ └── server.pl │ ├── counters.asr │ ├── counters.itf │ ├── counters.pl │ ├── counters.po │ ├── davinci.itf │ ├── davinci.old │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── commands.pl │ ├── davinci.pl.bak │ └── davinci.pl.tmpfile │ ├── davinci.pl │ ├── davinci.po │ ├── davinci8Wznpg │ ├── davinciQNZdYP │ ├── dclp │ ├── NODISTRIBUTE │ ├── and │ │ ├── Makefile │ │ ├── and.pl │ │ ├── and_rt.clean.pl │ │ ├── and_rt.pl │ │ ├── and_tr.pl │ │ ├── benchmarks-results │ │ │ ├── benchmark1 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 1.noprop │ │ │ │ ├── 2.noprop │ │ │ │ └── 3.noprop │ │ │ ├── benchmark10 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ ├── benchmark11 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ ├── benchmark12 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ ├── benchmark13 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ │ ├── benchmark14 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 5 │ │ │ │ ├── 6 │ │ │ │ ├── 1.noprop │ │ │ │ ├── 2.noprop │ │ │ │ ├── 3.noprop │ │ │ │ ├── 4.noprop │ │ │ │ ├── 5.noprop │ │ │ │ └── 6.noprop │ │ │ ├── benchmark15 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ ├── benchmark16 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ │ ├── benchmark18 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ ├── benchmark2 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 1.noprop │ │ │ │ ├── 2.noprop │ │ │ │ └── 3.noprop │ │ │ ├── benchmark3 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 1.noprop │ │ │ │ ├── 2.noprop │ │ │ │ └── 3.noprop │ │ │ ├── benchmark4 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ ├── benchmark6 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 5 │ │ │ │ └── 6 │ │ │ ├── benchmark7 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ ├── benchmark8 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ │ ├── benchmark9 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ └── 4 │ │ │ ├── dec_seqs │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ ├── dec_seqs2 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ ├── magic3 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 1.noprop │ │ │ │ ├── 2.noprop │ │ │ │ └── 3.noprop │ │ │ ├── magicN │ │ │ │ ├── 1 │ │ │ │ └── 3 │ │ │ ├── queens │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ ├── 1.noprop │ │ │ │ ├── 2.noprop │ │ │ │ ├── 3.noprop │ │ │ │ └── 4.noprop │ │ │ └── smm │ │ │ │ ├── smm1 │ │ │ │ ├── smm2 │ │ │ │ ├── smm3 │ │ │ │ └── smm4 │ │ ├── benchmarks │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ ├── 3 │ │ │ ├── 4 │ │ │ ├── Makefile │ │ │ ├── benchmark1.pl │ │ │ ├── benchmark10.pl │ │ │ ├── benchmark11.pl │ │ │ ├── benchmark12.pl │ │ │ ├── benchmark13.pl │ │ │ ├── benchmark14.pl │ │ │ ├── benchmark15.pl │ │ │ ├── benchmark16.pl │ │ │ ├── benchmark18.pl │ │ │ ├── benchmark19.pl │ │ │ ├── benchmark2.pl │ │ │ ├── benchmark20.pl │ │ │ ├── benchmark21.pl │ │ │ ├── benchmark3.pl │ │ │ ├── benchmark4.pl │ │ │ ├── benchmark5-prime.pl │ │ │ ├── benchmark5.pl │ │ │ ├── benchmark6.pl │ │ │ ├── benchmark7.pl │ │ │ ├── benchmark8.pl │ │ │ ├── benchmark9.pl │ │ │ ├── dec_seqs.pl │ │ │ ├── dec_seqs2.pl │ │ │ ├── magic3.pl │ │ │ ├── magicN.pl │ │ │ ├── queens.pl │ │ │ └── test.pl │ │ ├── desc_benchmarks.txt │ │ └── syntax.pl │ └── or │ │ ├── Makefile │ │ ├── examples │ │ ├── Makefile │ │ ├── b1.pl │ │ ├── b2.pl │ │ ├── b3.pl │ │ ├── b4.pl │ │ ├── b5.pl │ │ ├── b6.pl │ │ ├── b7.pl │ │ └── b8.pl │ │ ├── nameserver │ │ ├── Makefile │ │ ├── nameserver.pl │ │ └── nameserver_db │ │ │ └── nameserver │ │ │ └── module_address_db_3.pl │ │ ├── remote │ │ ├── Makefile │ │ ├── P2F.txt │ │ ├── agency.old.pl │ │ ├── agency.pl │ │ ├── binder.pl │ │ ├── manager.pl │ │ ├── manager_ini.pl │ │ ├── pruebas │ │ └── pruebas.r2dX │ │ └── remote_R │ │ ├── Makefile │ │ ├── P2F.txt │ │ ├── agency.pl │ │ ├── binder.pl │ │ ├── manager.pl │ │ ├── manager_ini.pl │ │ ├── pruebas │ │ └── pruebas.r2dX │ ├── det_hook │ ├── det_hook.pl │ ├── det_hook_rt.asr │ ├── det_hook_rt.itf │ ├── det_hook_rt.pl │ ├── det_hook_rt.po │ ├── det_hook_tr.itf │ ├── det_hook_tr.pl │ ├── det_hook_tr.po │ └── examples │ │ ├── NOCOMPILE │ │ ├── enumerate.pl │ │ ├── example.pl │ │ └── example2.pl │ ├── emacs │ ├── emacs.itf │ ├── emacs.pl │ ├── emacs.po │ └── start-ciao-toplevel │ ├── events.itf │ ├── events.pl │ ├── events.po │ ├── examples │ ├── Makefile │ ├── critical.clp │ ├── critical.pl │ ├── fib_q.pl │ ├── fib_r.pl │ ├── fibpl.pl │ ├── laplace.clp │ ├── laplace.pl │ ├── mmatrix_q.pl │ ├── mmatrix_r.pl │ ├── nqueens_q.pl │ └── small_incomplete_not_working │ │ ├── NODISTRIBUTE │ │ ├── fib.pl │ │ ├── fibclpr.pl │ │ ├── mmatrix.pl │ │ ├── mmult.pl │ │ ├── nqueens_q.pl │ │ ├── power.pl │ │ └── t.pl │ ├── expander │ ├── .mio │ ├── NODISTRIBUTE │ ├── expander.pl │ ├── expander_tr.itf │ ├── expander_tr.pl │ ├── expander_tr.po │ ├── mio │ ├── mio.asr │ ├── mio.itf │ ├── mio.pl │ ├── mio.po │ ├── mio_co.itf │ ├── mio_co.pl │ └── mio_co.po │ ├── expansion_tools.asr │ ├── expansion_tools.itf │ ├── expansion_tools.pl │ ├── expansion_tools.po │ ├── factsdb │ ├── dynamic │ │ ├── NODISTRIBUTE │ │ ├── cache_rt.assert │ │ └── examples │ │ │ ├── file_p │ │ │ ├── file_q │ │ │ ├── mainc.pl │ │ │ └── p.pl │ ├── examples │ │ ├── dfib.pl │ │ ├── ffib.pl │ │ ├── fib.pl │ │ ├── fibdb.pl │ │ └── persdb │ │ │ └── user │ │ │ ├── fib0_2.pl │ │ │ └── fib0_2_ops.pl │ ├── factsdb.pl │ ├── factsdb_rt.itf │ ├── factsdb_rt.pl │ ├── factsdb_rt.po │ ├── factsdb_tr.itf │ ├── factsdb_tr.pl │ ├── factsdb_tr.po │ ├── static │ │ ├── NODISTRIBUTE │ │ ├── cache.pl │ │ ├── cache_doc.pl │ │ ├── cache_rt.itf │ │ ├── cache_rt.pl │ │ ├── cache_rt.po │ │ ├── cache_tr.itf │ │ ├── cache_tr.pl │ │ └── cache_tr.po │ └── window │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── cache.pl │ │ ├── cache_rt.pl │ │ ├── cache_rt2.pl │ │ └── cache_tr.pl │ ├── fake │ ├── fake_module.itf │ ├── fake_module.pl │ └── fake_module.po │ ├── fdtypes │ ├── NOCOMPILE │ ├── basictypes.pl │ └── fdtypes.pl │ ├── file_locks │ ├── file_locks.asr │ ├── file_locks.itf │ ├── file_locks.pl │ ├── file_locks.po │ └── in_development │ │ ├── Makefile │ │ ├── Makefile.temp │ │ ├── NODISTRIBUTE │ │ └── file_locks.c │ ├── fly │ ├── Doc │ │ └── LPSETTINGS.pl │ ├── NODISTRIBUTE │ └── fly.pl │ ├── formulae.itf │ ├── formulae.pl │ ├── formulae.po │ ├── fourier_motzkin.pl │ ├── freeze │ ├── freeze.asr │ ├── freeze.itf │ ├── freeze.pl │ └── freeze.po │ ├── functions │ ├── examples │ │ ├── SCRIPT │ │ ├── append.itf │ │ ├── append.pl │ │ ├── append.po │ │ ├── deriv.itf │ │ ├── deriv.pl │ │ ├── deriv.po │ │ ├── factf.itf │ │ ├── factf.pl │ │ ├── factf.po │ │ ├── factf_assrt.itf │ │ ├── factf_assrt.pl │ │ ├── factf_assrt.po │ │ ├── fib_fun.itf │ │ ├── fib_fun.pl │ │ ├── fib_fun.po │ │ ├── lazyex.itf │ │ ├── lazyex.pl │ │ ├── lazyex.po │ │ ├── revf.itf │ │ ├── revf.pl │ │ ├── revf.po │ │ ├── revf_assrt_bug.itf │ │ ├── revf_assrt_bug.pl │ │ └── revf_assrt_bug.po │ ├── functions.pl │ ├── functions_doc.pl │ ├── functionstr.itf │ ├── functionstr.pl │ ├── functionstr.po │ └── ops.pl │ ├── fuzzy │ ├── development │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ └── fuzzy │ │ │ ├── bit.tex │ │ │ ├── paco │ │ │ ├── examples │ │ │ │ ├── bottle.pl │ │ │ │ ├── compatible.pl │ │ │ │ ├── dice.pl │ │ │ │ ├── dicesum5.pl │ │ │ │ ├── example1.pl │ │ │ │ ├── example2.pl │ │ │ │ ├── example3.pl │ │ │ │ ├── example4.pl │ │ │ │ ├── example5.pl │ │ │ │ ├── example6.pl │ │ │ │ ├── example7.pl │ │ │ │ ├── fril.pl │ │ │ │ ├── itinerary.pl │ │ │ │ ├── liu.pl │ │ │ │ ├── myaggr.pl │ │ │ │ └── young2.pl │ │ │ ├── faggr.pl │ │ │ ├── fuzzy.pl │ │ │ ├── fuzzy_doc.old │ │ │ ├── fuzzy_doc.pl │ │ │ ├── fuzzy_tr.pl │ │ │ └── ops.pl │ │ │ ├── referencias │ │ │ └── work │ │ │ ├── agregacion │ │ │ ├── dicesum5.pl │ │ │ └── foo.pl │ │ │ ├── bugs │ │ │ ├── bitacora │ │ │ └── expansion │ │ │ ├── domains │ │ │ ├── bitacora │ │ │ └── mails │ │ │ ├── faggr.pl │ │ │ ├── fuzzy.pl │ │ │ ├── fuzzy_doc.pl │ │ │ ├── fuzzy_tr.pl │ │ │ └── ops.pl │ ├── examples │ │ ├── NOCOMPILE │ │ ├── bottle.pl │ │ ├── compatible.pl │ │ ├── default.pl │ │ ├── dice.pl │ │ ├── dicesum5.pl │ │ ├── example1.pl │ │ ├── example2.pl │ │ ├── example3.pl │ │ ├── example4.pl │ │ ├── example5.pl │ │ ├── example6.pl │ │ ├── example7.pl │ │ ├── fril.pl │ │ ├── itinerary.pl │ │ ├── liu.pl │ │ ├── myaggr.pl │ │ ├── p.pl │ │ ├── test.pl │ │ └── young2.pl │ ├── faggr.itf │ ├── faggr.pl │ ├── faggr.po │ ├── fuzzy.pl │ ├── fuzzy_doc.pl │ ├── fuzzy_tr.itf │ ├── fuzzy_tr.pl │ ├── fuzzy_tr.po │ └── ops.pl │ ├── gen_asr_file.itf │ ├── gen_asr_file.pl │ ├── gen_asr_file.po │ ├── global.itf │ ├── global.pl │ ├── global.po │ ├── graphs │ ├── graphs.asr │ ├── graphs.itf │ ├── graphs.pl │ ├── graphs.po │ ├── lgraphs.asr │ ├── lgraphs.itf │ ├── lgraphs.pl │ ├── lgraphs.po │ ├── ugraphs.asr │ ├── ugraphs.itf │ ├── ugraphs.pl │ ├── ugraphs.po │ ├── wgraphs.itf │ ├── wgraphs.pl │ └── wgraphs.po │ ├── hiordlib.asr │ ├── hiordlib.itf │ ├── hiordlib.pl │ ├── hiordlib.po │ ├── hlc │ ├── INDEV │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── amp.pl │ │ ├── amp_det.pl │ │ └── ampersands.pl │ ├── examples │ │ ├── Makefile │ │ └── examples_hlc.pl │ ├── hlc.pl │ ├── hlconc_rt.itf │ ├── hlconc_rt.pl │ ├── hlconc_rt.po │ ├── hlconc_rt_backtrack.itf │ ├── hlconc_rt_backtrack.pl │ └── hlconc_rt_backtrack.po │ ├── id │ ├── examples │ │ ├── Makefile │ │ ├── example2.pl │ │ ├── example_id.pl │ │ ├── examplep.pl │ │ ├── exampleq.pl │ │ └── qsort.pl │ ├── id.pl │ ├── id_doc.pl │ ├── id_rt.pl │ ├── id_tr.itf │ ├── id_tr.pl │ └── id_tr.po │ ├── idlists.asr │ ├── idlists.itf │ ├── idlists.pl │ ├── idlists.po │ ├── indexer │ ├── ALTERNATIVE │ │ ├── .NOCOMPILE │ │ ├── .NODISTRIBUTE │ │ └── hash_.pl │ ├── KEEP │ │ ├── HASH │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── TODO │ │ ├── t.pl │ │ ├── t_co_out.pl │ │ ├── t_dyn │ │ └── t_out.pl │ ├── examples │ │ ├── README │ │ ├── t.itf │ │ ├── t.pl │ │ ├── t.po │ │ └── t_out.pl.dat │ ├── goedel.itf │ ├── goedel.pl │ ├── goedel.po │ ├── hash.asr │ ├── hash.itf │ ├── hash.pl │ ├── hash.po │ ├── indexer.pl │ ├── indexer_doc.itf │ ├── indexer_doc.pl │ ├── indexer_doc.po │ ├── indexer_tr.itf │ ├── indexer_tr.pl │ ├── indexer_tr.po │ ├── low.asr │ ├── low.itf │ ├── low.pl │ └── low.po │ ├── interface │ ├── interface.pl │ ├── interface_doc.itf │ ├── interface_doc.pl │ ├── interface_doc.po │ ├── interface_tr.itf │ ├── interface_tr.pl │ └── interface_tr.po │ ├── io_alias_redirection.asr │ ├── io_alias_redirection.itf │ ├── io_alias_redirection.pl │ ├── io_alias_redirection.po │ ├── javall │ ├── CiaoJava │ │ ├── Makefile │ │ ├── PLAtom.class │ │ ├── PLAtom.java │ │ ├── PLConnection.class │ │ ├── PLConnection.java │ │ ├── PLEventListener.class │ │ ├── PLEventListener.java │ │ ├── PLEvents.class │ │ ├── PLException.class │ │ ├── PLException.java │ │ ├── PLFloat.class │ │ ├── PLFloat.java │ │ ├── PLGoal.class │ │ ├── PLGoal.java │ │ ├── PLGoalException.class │ │ ├── PLGoalException.java │ │ ├── PLGoals.class │ │ ├── PLInteger.class │ │ ├── PLInteger.java │ │ ├── PLInterpreter.class │ │ ├── PLInterpreter.java │ │ ├── PLJavaObjServer.class │ │ ├── PLJavaObjServer.java │ │ ├── PLJavaServer.class │ │ ├── PLJavaServer.java │ │ ├── PLList.class │ │ ├── PLList.java │ │ ├── PLMultithreadSocketReader.class │ │ ├── PLMultithreadSocketReader.java │ │ ├── PLServerSocket.class │ │ ├── PLServerSocket.java │ │ ├── PLSocketReader.class │ │ ├── PLSocketReader.java │ │ ├── PLSocketWriter.class │ │ ├── PLSocketWriter.java │ │ ├── PLString.class │ │ ├── PLString.java │ │ ├── PLStructure.class │ │ ├── PLStructure.java │ │ ├── PLTerm.class │ │ ├── PLTerm.java │ │ ├── PLVariable.class │ │ ├── PLVariable.java │ │ ├── TAGS │ │ └── package.html │ ├── JavallSumm.lpdoc │ ├── Makefile │ ├── TAGS │ ├── autofig │ │ ├── arch-cs1.eps │ │ ├── arch-cs1.fig │ │ ├── arch-cs2.eps │ │ ├── arch-cs2.fig │ │ ├── arch-layers-j2pl.eps │ │ ├── arch-layers-j2pl.fig │ │ ├── arch-layers-pl2j.eps │ │ ├── arch-layers-pl2j.fig │ │ ├── ip2jbn-events-java.eps │ │ ├── ip2jbn-events-java.fig │ │ ├── ip2jbn-events-pl-fire.eps │ │ ├── ip2jbn-events-pl-fire.fig │ │ ├── ip2jbn-events-pl-reg.eps │ │ ├── ip2jbn-events-pl-reg.fig │ │ ├── ip2jbn-plterm.eps │ │ └── ip2jbn-plterm.fig │ ├── doc │ │ └── LPSETTINGS.pl │ ├── examples │ │ ├── java2pl │ │ │ ├── Makefile │ │ │ ├── example0.class │ │ │ ├── example0.java │ │ │ ├── example1$btnExitAction.class │ │ │ ├── example1.class │ │ │ ├── example1.java │ │ │ ├── non-dist │ │ │ │ ├── NODISTRIBUTE │ │ │ │ └── ex2.java │ │ │ ├── queens$Square.class │ │ │ ├── queens$btnExitAction.class │ │ │ ├── queens$btnNextAction.class │ │ │ ├── queens$btnOkAction.class │ │ │ ├── queens.class │ │ │ ├── queens.itf │ │ │ ├── queens.java │ │ │ ├── queens.pl │ │ │ ├── queens.po │ │ │ └── readme.txt │ │ └── pl2java │ │ │ ├── Makefile │ │ │ ├── NotWorking │ │ │ ├── NODISTRIBUTE │ │ │ └── benchmark.pl │ │ │ ├── calculator │ │ │ ├── calculator.itf │ │ │ ├── calculator.pl │ │ │ ├── calculator.po │ │ │ └── readme.txt │ ├── javadoc │ │ ├── CiaoJava │ │ │ ├── PLAtom.html │ │ │ ├── PLConnection.html │ │ │ ├── PLException.html │ │ │ ├── PLFloat.html │ │ │ ├── PLGoal.html │ │ │ ├── PLGoalException.html │ │ │ ├── PLInteger.html │ │ │ ├── PLJavaServer.html │ │ │ ├── PLList.html │ │ │ ├── PLServerSocket.html │ │ │ ├── PLString.html │ │ │ ├── PLStructure.html │ │ │ ├── PLTerm.html │ │ │ ├── PLVariable.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── Makefile │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── resources │ │ │ └── inherit.gif │ │ ├── serialized-form.html │ │ └── stylesheet.css │ ├── javall_doc.pl │ ├── javart.itf │ ├── javart.pl │ ├── javart.po │ ├── javasock.itf │ ├── javasock.pl │ ├── javasock.po │ ├── jtopl.itf │ ├── jtopl.pl │ ├── jtopl.po │ ├── plserver │ ├── plserver.bat │ ├── plserver.itf │ ├── plserver.pl │ ├── plserver.po │ └── texinfo_2sp.tex │ ├── javaobs │ ├── Doc │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ ├── Examples │ │ ├── Makefile │ │ ├── sample0.pl │ │ ├── sample1.pl │ │ └── sample2.pl │ ├── NODISTRIBUTE │ ├── java_inheritance.itf │ ├── java_inheritance.pl │ ├── java_inheritance.po │ ├── java_mod.pl │ ├── java_obj.pl │ ├── javax │ │ └── swing │ │ │ ├── Timer.pl │ │ │ └── event │ │ │ └── EventListenerList.pl │ ├── sun │ │ ├── awt │ │ │ ├── AppContext.pl │ │ │ ├── MostRecentKeyValue.pl │ │ │ └── MostRecentThreadAppContext.pl │ │ ├── io │ │ │ ├── ByteToCharConverter.pl │ │ │ └── CharToByteConverter.pl │ │ ├── misc │ │ │ └── URLClassPath.pl │ │ └── security │ │ │ └── util │ │ │ └── Debug.pl │ └── translator │ │ ├── Makefile │ │ ├── TAGS │ │ ├── java2pl.java │ │ ├── prueba.java │ │ └── prueba.pl │ ├── keys.itf │ ├── keys.pl │ ├── keys.po │ ├── librowser │ ├── Doc │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ ├── librowser.itf │ ├── librowser.pl │ └── librowser.po │ ├── linda.itf │ ├── linda.pl │ ├── linda.po │ ├── listing.itf │ ├── listing.pl │ ├── listing.po │ ├── loops.itf │ ├── loops.pl │ ├── loops.po │ ├── lsets.itf │ ├── lsets.pl │ ├── lsets.po │ ├── make │ ├── Doc │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ ├── Query │ ├── char_conversions.pl │ ├── dirs.itf │ ├── dirs.pl │ ├── dirs.po │ ├── example_latex │ │ ├── Commands │ │ ├── Makefile.pl │ │ └── paper.tex │ ├── example_simple │ │ ├── CommandsToTry │ │ ├── MakefileExample.itf │ │ ├── MakefileExample.pl │ │ └── MakefileExample.po │ ├── make.pl │ ├── make_com.pl │ ├── make_doc.pl │ ├── make_ops.pl │ ├── make_rt.asr │ ├── make_rt.itf │ ├── make_rt.pl │ ├── make_rt.po │ ├── make_tr.itf │ ├── make_tr.pl │ ├── make_tr.po │ ├── system_extra.asr │ ├── system_extra.itf │ ├── system_extra.pl │ └── system_extra.po │ ├── nativeprops.itf │ ├── nativeprops.pl │ ├── nativeprops.po │ ├── neg │ └── NODISTRIBUTE │ ├── netscape │ ├── examples │ │ └── install │ ├── netscape.itf │ ├── netscape.pl │ └── netscape.po │ ├── nf.pl │ ├── nl_eval.pl │ ├── numlists.asr │ ├── numlists.itf │ ├── numlists.pl │ ├── numlists.po │ ├── objects │ ├── Doc │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ ├── objects.pl │ ├── objects_doc.pl │ ├── objects_error_doc.pl │ ├── objects_error_reporting.asr │ ├── objects_error_reporting.itf │ ├── objects_error_reporting.pl │ ├── objects_error_reporting.po │ ├── objects_rt.asr │ ├── objects_rt.itf │ ├── objects_rt.pl │ ├── objects_rt.po │ ├── objects_tr.itf │ ├── objects_tr.pl │ ├── objects_tr.po │ ├── objects_tr_aux.pl │ ├── ociao_doc.itf │ ├── ociao_doc.pl │ ├── ociao_doc.po │ └── static_objects_tr.pl │ ├── ontologies │ ├── NODISTRIBUTE │ ├── iengine.pl │ ├── prueba-xml.pl │ ├── prueba-xml.xml │ └── prueba.pl │ ├── ops.pl │ ├── p2p │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── chord.pl │ ├── fingers.pl │ ├── p2pAPI.pl │ └── test │ │ ├── kk.pl │ │ ├── kk2.pl │ │ ├── test1 │ │ ├── port1.pl │ │ ├── port2.pl │ │ ├── test1.pl │ │ ├── test2.pl │ │ └── test3.pl │ │ └── test2 │ │ ├── call_test_client.pl │ │ ├── call_test_server.pl │ │ └── port.pl │ ├── parse_spec.asr │ ├── parse_spec.itf │ ├── parse_spec.pl │ ├── parse_spec.po │ ├── patterns.asr │ ├── patterns.itf │ ├── patterns.pl │ ├── patterns.po │ ├── persdb │ ├── Examples.pl │ ├── doc │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ ├── examples │ │ ├── NOCOMPILE │ │ ├── README │ │ ├── example_dynamic.pl │ │ ├── example_static.pl │ │ ├── queue.pl │ │ ├── queuedy.pl │ │ └── queuell.pl │ ├── ll.pl │ ├── persdb.pl │ ├── persdbcache.asr │ ├── persdbcache.itf │ ├── persdbcache.pl │ ├── persdbcache.po │ ├── persdbrt.asr │ ├── persdbrt.itf │ ├── persdbrt.pl │ ├── persdbrt.po │ ├── persdbtr.itf │ ├── persdbtr.pl │ └── persdbtr.po │ ├── persdb_mysql │ ├── db_client_types.asr │ ├── db_client_types.itf │ ├── db_client_types.pl │ ├── db_client_types.po │ ├── delete_compiler │ │ ├── NOCOMPILE │ │ ├── README │ │ ├── pl2sqldelete.asr │ │ ├── pl2sqldelete.itf │ │ ├── pl2sqldelete.pl │ │ └── pl2sqldelete.po │ ├── doc │ │ ├── Indexhead_persdbrt_sql.html │ │ ├── Indextail_persdbrt_sql.html │ │ ├── LPSETTINGS.pl │ │ ├── NODISTRIBUTE │ │ ├── architecture.eps │ │ ├── architecture.fig │ │ ├── persdbrt_sql.htmlbullet │ │ ├── persdbrt_sql.info │ │ └── persdbrt_sql.manl │ ├── examples │ │ ├── NOCOMPILE │ │ ├── README │ │ ├── active_modules │ │ │ ├── NODISTRIBUTE │ │ │ ├── db_client_example.pl │ │ │ ├── db_server_example.addr │ │ │ └── db_server_example.pl │ │ ├── examples │ │ ├── not_working │ │ │ ├── NODISTRIBUTE │ │ │ ├── persdb_example.pl │ │ │ └── test.pl │ │ ├── people.pl │ │ ├── small_examples │ │ │ ├── getting_mysql_database.pl │ │ │ ├── getting_table_types.pl │ │ │ ├── getting_user_table.pl │ │ │ ├── pl2sql_example.pl │ │ │ ├── pl2sql_examples │ │ │ └── user_and_password.pl │ │ └── user_and_password.pl │ ├── linker_opts.pl │ ├── linker_opts.pl.skel │ ├── mysql_client.asr │ ├── mysql_client.c │ ├── mysql_client.itf │ ├── mysql_client.pl │ ├── mysql_client.po │ ├── mysql_client_LINUXi86_glue.c │ ├── mysql_use_client │ ├── mysql_use_client.bat │ ├── mysql_use_client.itf │ ├── mysql_use_client.pl │ ├── mysql_use_client.po │ ├── odbc │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ └── odbc_client.pl │ ├── old │ │ ├── Makefile │ │ ├── NODISTRIBUTE │ │ ├── misc │ │ │ ├── NOCOMPILE │ │ │ ├── NODISTRIBUTE │ │ │ ├── ServerToClientErrorMessages.h │ │ │ ├── database_client_orig.pl │ │ │ ├── persdb_example_tr.pl │ │ │ ├── persdbtr.pl │ │ │ ├── pl2sql_orig.pl │ │ │ ├── pl2sql_orig_tests.pl │ │ │ ├── pl2sql_using_tmp_file.pl │ │ │ ├── predicates.pl │ │ │ ├── queries.pl │ │ │ ├── sqlexpand_orig.pl │ │ │ └── tables.pl │ │ ├── pl2sql_modifications │ │ │ ├── .NODISTRIBUTE │ │ │ ├── NOCOMPILE │ │ │ ├── dalet_cruel3.pl │ │ │ ├── fragments.pl │ │ │ ├── outstandings.txt │ │ │ ├── pl2sqlBAK.pl │ │ │ ├── pl2sql_long_strings_example.pl │ │ │ ├── pl2sql_test_foo.pl │ │ │ └── pl2sqlnew_example.pl │ │ ├── postgreSQLaccess │ │ │ ├── NODISTRIBUTE │ │ │ ├── TODO.txt │ │ │ ├── pg_client.pl │ │ │ ├── pg_packets.pl │ │ │ └── tests │ │ │ │ ├── NODISTRIBUTE │ │ │ │ ├── pg.el │ │ │ │ ├── pgelout.txt │ │ │ │ └── pgtest.pl │ │ └── tests │ │ │ ├── AccessTest.pl │ │ │ ├── Demo.txt │ │ │ ├── NOCOMPILE │ │ │ ├── NODISTRIBUTE │ │ │ ├── bugs.txt │ │ │ ├── dalet_cruel.pl │ │ │ ├── dalet_cruel2.pl │ │ │ ├── dalet_cruel3.pl │ │ │ ├── dalet_ex1.pl │ │ │ ├── dalet_ex2.pl │ │ │ ├── dalet_example.pl │ │ │ ├── db_client_example.pl │ │ │ ├── db_client_example_large.pl │ │ │ ├── fill_literature_db.pl │ │ │ ├── labels.txt │ │ │ ├── persdb_example.pl │ │ │ ├── persdb_example_my_copy.pl │ │ │ ├── persdb_example_persdb_sql.pl │ │ │ ├── persdb_tests.pl │ │ │ ├── pl2sqlBAK.pl │ │ │ ├── pl2sql_more_examples.pl │ │ │ ├── sademo_ex.pl │ │ │ ├── to_do.txt │ │ │ └── to_do_some_details.txt │ ├── persdb_mysql.pl │ ├── persdbrt_mysql.asr │ ├── persdbrt_mysql.itf │ ├── persdbrt_mysql.pl │ ├── persdbrt_mysql.pl.bak │ ├── persdbrt_mysql.po │ ├── persdbrtsqlarchitecture.eps │ ├── pl2sql.asr │ ├── pl2sql.itf │ ├── pl2sql.pl │ ├── pl2sql.po │ ├── sql_types.itf │ ├── sql_types.pl │ └── sql_types.po │ ├── persdb_mysql_op │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── TO_DO │ ├── db_client_types.asr │ ├── db_client_types.itf │ ├── db_client_types.pl │ ├── db_client_types.po │ ├── linker_opts.pl │ ├── linker_opts.pl.skel │ ├── mysql_client.c │ ├── mysql_client.itf │ ├── mysql_client.pl │ ├── mysql_client.po │ ├── mysql_client_LINUXi86_glue.c │ ├── mysql_use_client.bat │ ├── mysql_use_client.itf │ ├── mysql_use_client.pl │ ├── mysql_use_client.po │ ├── persdb_mysql_op.pl │ ├── persdbrt_mysql_op.itf │ ├── persdbrt_mysql_op.pl │ ├── persdbrt_mysql_op.po │ ├── persdbtr_mysql_op.itf │ ├── persdbtr_mysql_op.pl │ ├── persdbtr_mysql_op.po │ ├── pl2sql.itf │ ├── pl2sql.pl │ ├── pl2sql.po │ ├── pl2sqldelete.itf │ ├── pl2sqldelete.pl │ ├── pl2sqldelete.po │ ├── sql_types.itf │ ├── sql_types.pl │ ├── sql_types.po │ └── test.pl │ ├── persdb_odbc │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── architecture.eps │ ├── architecture.fig │ ├── db_client.pl │ ├── examples │ │ ├── db_client_example.pl │ │ ├── examples │ │ ├── persdb_example.pl │ │ └── pl2sql_example.pl │ ├── gdbi │ │ ├── INSTALL │ │ ├── InfoForDevelopers │ │ │ ├── Changes_tags.txt │ │ │ ├── Commands.txt │ │ │ ├── Modified_Files.txt │ │ │ ├── My_documentation.txt │ │ │ ├── NODISTRIBUTE │ │ │ └── Releases_History.txt │ │ ├── InfoForGDAUsers │ │ │ ├── GDAServerCommands.txt │ │ │ └── Readme_GDA_User.txt │ │ ├── InfoForSetup │ │ │ ├── install_GDA_Server.txt │ │ │ └── install_odbc_source.txt │ │ ├── README │ │ ├── ServerExecutables │ │ │ ├── DLLExecutables │ │ │ │ └── Server.exe │ │ │ └── StaticExecutables │ │ │ │ └── Server.exe │ │ ├── Win32ClientExecutables │ │ │ ├── DLLExecutables_17_8_98 │ │ │ │ └── Client.exe │ │ │ ├── StaticExecutables_17_8_98 │ │ │ │ └── Client.exe │ │ │ └── install_GDA_NTClient.txt │ │ ├── doc │ │ │ ├── INSTALL.lpdoc │ │ │ ├── LPSETTINGS.pl │ │ │ ├── README.lpdoc │ │ │ └── gdbi.pl │ │ ├── readmes │ │ │ ├── LPSETTINGS.pl │ │ │ ├── NODISTRIBUTE │ │ │ └── RSETTINGS.pl │ │ ├── src │ │ │ ├── Server │ │ │ │ ├── ConnectedSocket.cpp │ │ │ │ ├── ConnectedSocket.h │ │ │ │ ├── DBAccess.cpp │ │ │ │ ├── DBAccess.h │ │ │ │ ├── DbServer.cpp │ │ │ │ ├── DbServer.h │ │ │ │ ├── Debug │ │ │ │ │ └── Server.exe │ │ │ │ ├── LoginDlg.cpp │ │ │ │ ├── LoginDlg.h │ │ │ │ ├── MainFrm.cpp │ │ │ │ ├── MainFrm.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── Server.aps │ │ │ │ ├── Server.clw │ │ │ │ ├── Server.cpp │ │ │ │ ├── Server.dsp │ │ │ │ ├── Server.dsw │ │ │ │ ├── Server.h │ │ │ │ ├── Server.ncb │ │ │ │ ├── Server.opt │ │ │ │ ├── Server.plg │ │ │ │ ├── Server.rc │ │ │ │ ├── ServerDoc.cpp │ │ │ │ ├── ServerDoc.h │ │ │ │ ├── ServerToClientErrorMessages.h │ │ │ │ ├── ServerView.cpp │ │ │ │ ├── ServerView.h │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── ToRefine.txt │ │ │ │ ├── columnst.cpp │ │ │ │ ├── columnst.h │ │ │ │ ├── res │ │ │ │ │ ├── Server.ico │ │ │ │ │ ├── Server.rc2 │ │ │ │ │ ├── ServerDoc.ico │ │ │ │ │ └── Toolbar.bmp │ │ │ │ ├── resource.h │ │ │ │ ├── serversocket.cpp │ │ │ │ ├── serversocket.h │ │ │ │ ├── tableset.cpp │ │ │ │ └── tableset.h │ │ │ ├── UnixClient │ │ │ │ ├── Makefile │ │ │ │ ├── client.c │ │ │ │ └── config.txt │ │ │ └── Win32Client │ │ │ │ ├── Client.clw │ │ │ │ ├── Client.cpp │ │ │ │ ├── Client.dsp │ │ │ │ ├── Client.h │ │ │ │ ├── Client.rc │ │ │ │ ├── ClientDlg.cpp │ │ │ │ ├── ClientDlg.h │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── StdAfx.cpp │ │ │ │ ├── StdAfx.h │ │ │ │ ├── clientsocket.cpp │ │ │ │ ├── clientsocket.h │ │ │ │ ├── res │ │ │ │ ├── Client.ico │ │ │ │ └── Client.rc2 │ │ │ │ └── resource.h │ │ └── version │ │ │ ├── GlobalChangeLog │ │ │ ├── GlobalPatch │ │ │ └── GlobalVersion │ ├── persdb_sql.pl │ ├── persdbrt_sql.pl │ ├── persdbrtsql.pl │ ├── persdbrtsqlarchitecture.eps │ ├── pl2sql_sql.pl │ └── string2term.pl │ ├── persdb_sql_common │ ├── persdbtr_sql.itf │ ├── persdbtr_sql.pl │ ├── persdbtr_sql.po │ ├── pl2sqlinsert.asr │ ├── pl2sqlinsert.itf │ ├── pl2sqlinsert.pl │ ├── pl2sqlinsert.po │ ├── sqltypes.asr │ ├── sqltypes.itf │ ├── sqltypes.pl │ ├── sqltypes.po │ └── status_readme.txt │ ├── pillow │ ├── Copyright │ ├── Make_aux.pl │ ├── Makefile │ ├── Mess.old │ ├── dist │ │ ├── .nodistribute │ │ ├── Announcement │ │ ├── Makefile │ │ ├── NODISTRIBUTE │ │ ├── PillowDistHead.html │ │ ├── PillowDistTail.html │ │ ├── README.examples │ │ ├── SETTINGS │ │ ├── TarSrcText_ciao.html │ │ ├── TarSrcText_eclipse.html │ │ ├── TarSrcText_sicstus.html │ │ ├── TarSrcText_swi.html │ │ ├── TarSrcText_yap.html │ │ ├── adds_eclipse.pl │ │ ├── adds_sicstus.pl │ │ ├── adds_swi.pl │ │ ├── adds_yap.pl │ │ ├── doc │ │ │ ├── INSTALL_pillow.lpdoc │ │ │ ├── Indexhead_pillow_doc.html │ │ │ ├── Indextail_pillow_doc.html │ │ │ ├── LPSETTINGS.pl │ │ │ ├── README_pillow.lpdoc │ │ │ ├── index.html │ │ │ ├── lpdoc.css │ │ │ ├── pillow.bib │ │ │ ├── pillow_doc.htmlbullet │ │ │ └── pillow_doc.info │ │ ├── icon_address.pl │ │ ├── ops_eclipse.pl │ │ ├── ops_swi.pl │ │ ├── readmes │ │ │ ├── LPSETTINGS.pl │ │ │ └── RSETTINGS.pl │ │ └── stripsource │ ├── doc │ │ ├── README-documentation │ │ └── pillow.types │ ├── examples │ │ ├── check_links.pl │ │ ├── cookies.pl │ │ ├── html_demo.html │ │ ├── html_demo.pl │ │ ├── html_forms.pl │ │ ├── phones.pl │ │ └── template.html │ ├── html.asr │ ├── html.itf │ ├── html.pl │ ├── html.po │ ├── http.asr │ ├── http.itf │ ├── http.pl │ ├── http.po │ ├── http_ll.asr │ ├── http_ll.itf │ ├── http_ll.pl │ ├── http_ll.po │ ├── http_post.pl │ ├── http_server.pl │ ├── http_server_ll.pl │ ├── icon_address.pl │ ├── images │ │ ├── clip.gif │ │ ├── pillow_d.gif │ │ ├── pillow_d_nt.gif │ │ ├── redball.gif │ │ ├── smile.happy.gif │ │ ├── smile.sad.gif │ │ └── warning_large.gif │ ├── ops.pl │ ├── pillow.pl │ ├── pillow_aux.asr │ ├── pillow_aux.itf │ ├── pillow_aux.pl │ ├── pillow_aux.po │ ├── pillow_doc.pl │ ├── pillow_summ.lpdoc │ ├── pillow_types.asr │ ├── pillow_types.itf │ ├── pillow_types.pl │ ├── pillow_types.po │ ├── xmlterm.asr │ ├── xmlterm.itf │ ├── xmlterm.pl │ └── xmlterm.po │ ├── platforms │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── platforms.pl │ └── platforms2.bak │ ├── polyhedra_amk.pl │ ├── polyhedra_amk_clpq.itf │ ├── polyhedra_amk_clpq.pl │ ├── polyhedra_amk_clpq.po │ ├── polyhedra_amk_clpr.itf │ ├── polyhedra_amk_clpr.pl │ ├── polyhedra_amk_clpr.po │ ├── polyhedra_amk_doc.itf │ ├── polyhedra_amk_doc.pl │ ├── polyhedra_amk_doc.po │ ├── pretty_print.asr │ ├── pretty_print.itf │ ├── pretty_print.pl │ ├── pretty_print.po │ ├── prompt.asr │ ├── prompt.itf │ ├── prompt.pl │ ├── prompt.po │ ├── pwamc │ ├── Makefile │ ├── NODISTRIBUTE │ ├── builtins_pwam.pl │ ├── module.pl │ ├── plpwam.pl │ └── pwamql.pl │ ├── queues.itf │ ├── queues.pl │ ├── queues.po │ ├── random │ ├── Makefile │ ├── common_headers.h │ ├── random.asr │ ├── random.c │ ├── random.itf │ ├── random.pl │ ├── random.po │ ├── random_LINUXi86.so │ └── random_LINUXi86_glue.o │ ├── remote │ ├── NOCOMPILE │ ├── NODISTRIBUTE │ ├── TO-DO │ ├── bak │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── ciao_client.bak.old.pl │ │ ├── ciao_client.bak.pl │ │ ├── ciao_client.keep_stream.pl │ │ ├── ciao_client.works.pl │ │ ├── ciao_client_rt.pl.arc │ │ ├── ciao_server.bak.old.pl │ │ ├── ciao_server.bak.pl │ │ ├── ciao_server.keep_stream.pl │ │ ├── ciao_server.works.pl │ │ ├── read_and_write.pl.bak │ │ └── remote.bak.pl │ ├── benchmark │ │ ├── Makefile │ │ ├── NODISTRIBUTE │ │ ├── client.pl │ │ ├── client_constr.pl │ │ ├── measure_size.pl │ │ ├── recover_socket │ │ ├── server.pl │ │ ├── sizes │ │ │ ├── frw_att │ │ │ │ ├── f_10 │ │ │ │ ├── f_100 │ │ │ │ ├── f_50 │ │ │ │ ├── g0_10 │ │ │ │ ├── g0_100 │ │ │ │ ├── g0_50 │ │ │ │ ├── int_100 │ │ │ │ ├── int_1000 │ │ │ │ ├── int_500 │ │ │ │ ├── var_100 │ │ │ │ ├── var_1000 │ │ │ │ └── var_500 │ │ │ ├── frw_noatt │ │ │ │ ├── f_10 │ │ │ │ ├── f_100 │ │ │ │ ├── f_50 │ │ │ │ ├── g0_10 │ │ │ │ ├── g0_100 │ │ │ │ ├── g0_50 │ │ │ │ ├── int_100 │ │ │ │ ├── int_1000 │ │ │ │ ├── int_500 │ │ │ │ ├── var_100 │ │ │ │ ├── var_1000 │ │ │ │ └── var_500 │ │ │ ├── nofrw_att │ │ │ │ ├── f_10 │ │ │ │ ├── f_100 │ │ │ │ ├── f_50 │ │ │ │ ├── g0_10 │ │ │ │ ├── g0_100 │ │ │ │ ├── g0_50 │ │ │ │ ├── int_100 │ │ │ │ ├── int_1000 │ │ │ │ ├── int_500 │ │ │ │ ├── var_100 │ │ │ │ ├── var_1000 │ │ │ │ └── var_500 │ │ │ └── nofrw_noatt │ │ │ │ ├── f_10 │ │ │ │ ├── f_100 │ │ │ │ ├── f_50 │ │ │ │ ├── g0_10 │ │ │ │ ├── g0_100 │ │ │ │ ├── g0_50 │ │ │ │ ├── int_100 │ │ │ │ ├── int_1000 │ │ │ │ ├── int_500 │ │ │ │ ├── var_100 │ │ │ │ ├── var_1000 │ │ │ │ └── var_500 │ │ ├── timing │ │ │ ├── const_frw_att.txt │ │ │ ├── const_frw_noatt.txt │ │ │ ├── const_nofrw_att.txt │ │ │ ├── const_nofrw_noatt.txt │ │ │ ├── noconst_frw_att.txt │ │ │ ├── noconst_frw_noatt.txt │ │ │ ├── noconst_nofrw_att.txt │ │ │ └── noconst_nofrw_noatt.txt │ │ ├── timing_remote │ │ │ ├── const_frw_noatt.txt │ │ │ ├── const_nofrw_att.txt │ │ │ ├── noconst_frw_noatt.txt │ │ │ ├── noconst_nofrw_att.txt │ │ │ └── noconst_nofrw_noatt.txt │ │ └── unif_constr.pl │ ├── ciao_client.pl │ ├── ciao_client_rt.pl │ ├── ciao_server.pl │ ├── ciao_server_rt.pl │ ├── examples-jf │ │ ├── Makefile │ │ ├── PROBLEMS │ │ ├── README │ │ ├── client.pl │ │ ├── object_client.pl │ │ ├── object_client2.pl │ │ ├── object_server.pl │ │ ├── queens.pl │ │ ├── queens_with_delays.pl │ │ ├── queensclp.pl │ │ ├── recover_socket │ │ ├── server.pl │ │ ├── simpleclp.pl │ │ ├── stack.pl │ │ └── test.pl │ ├── examples │ │ ├── Makefile │ │ ├── PROBLEMS │ │ ├── README │ │ ├── client.pl │ │ ├── object_client.pl │ │ ├── object_client2.pl │ │ ├── object_server.pl │ │ ├── queens.pl │ │ ├── queens_with_delays.pl │ │ ├── queensclp.pl │ │ ├── recover_socket │ │ ├── server.pl │ │ ├── simpleclp.pl │ │ ├── stack.pl │ │ └── test.pl │ ├── ops.pl │ ├── read_and_write.pl │ ├── remote.pl │ ├── remote_doc.pl │ ├── remote_tr.pl.arc │ └── socket_info.pl │ ├── rtchecks.pl │ ├── rtchecks │ ├── rtchecks_doc.pl │ ├── rtchecks_mod.asr │ ├── rtchecks_mod.itf │ ├── rtchecks_mod.pl │ ├── rtchecks_mod.po │ ├── rtchecks_tr.itf │ ├── rtchecks_tr.pl │ └── rtchecks_tr.po │ ├── sha1 │ ├── examples │ │ └── example.pl │ ├── sha1.itf │ ├── sha1.pl │ ├── sha1.po │ └── sha1_c.c │ ├── show_trans.pl │ ├── show_trans_tr.itf │ ├── show_trans_tr.pl │ ├── show_trans_tr.po │ ├── simplex.pl │ ├── soap │ ├── NODISTRIBUTE │ ├── example │ │ ├── NOCOMPILE │ │ ├── on_facts │ │ │ ├── example.pl │ │ │ ├── soap.pl │ │ │ └── xml │ │ ├── on_http │ │ │ ├── client.pl │ │ │ ├── server.pl │ │ │ └── xml │ │ ├── on_socket │ │ │ ├── client.pl │ │ │ ├── server.pl │ │ │ ├── soap_client.pl │ │ │ ├── soap_server.pl │ │ │ └── xml │ │ ├── soap1 │ │ └── toplevel.pl │ ├── soap.itf │ ├── soap.pl │ └── soap.po │ ├── sockets │ ├── Makefile │ ├── common_headers.h │ ├── examples │ │ ├── Makefile │ │ ├── README │ │ ├── client.pl │ │ ├── server.pl │ │ └── socket_number.pl │ ├── sockets.asr │ ├── sockets.itf │ ├── sockets.pl │ ├── sockets.po │ ├── sockets_c.asr │ ├── sockets_c.c │ ├── sockets_c.itf │ ├── sockets_c.pl │ ├── sockets_c.po │ ├── sockets_c_LINUXi86.so │ ├── sockets_c_LINUXi86_glue.o │ ├── sockets_io.itf │ ├── sockets_io.pl │ └── sockets_io.po │ ├── solve.pl │ ├── sortnums.itf │ ├── sortnums.pl │ ├── sortnums.po │ ├── symfnames │ ├── examples.lpdoc │ ├── examples │ │ ├── main.pl │ │ ├── mm.itf │ │ ├── mm.pl │ │ ├── mm.po │ │ └── myfiles.pl │ ├── symfnames.asr │ ├── symfnames.itf │ ├── symfnames.pl │ └── symfnames.po │ ├── tcltk │ ├── Doc │ │ ├── LPSETTINGS.pl │ │ └── NODISTRIBUTE │ ├── Vtcl │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── Prev │ │ │ ├── ciaowish.pl │ │ │ ├── ciaowish_new.pl │ │ │ ├── ciaowish_temp.pl │ │ │ ├── tcl_example.pl │ │ │ ├── tcl_thr_example.pl │ │ │ ├── tcltk.pl │ │ │ ├── test.tcl │ │ │ ├── vtcl_example.pl │ │ │ ├── vtcl_example.tcl │ │ │ └── wish.pl │ │ └── RUC_NewVersion │ │ │ ├── NODISTRIBUTE │ │ │ ├── README │ │ │ ├── Report.pdf │ │ │ ├── examples │ │ │ ├── interface.pl │ │ │ ├── interface.tcl │ │ │ └── main.pl │ │ │ ├── prolog.tcl │ │ │ ├── tcltk.pl │ │ │ ├── tcltk_low_level.pl │ │ │ └── vtcl2prolog.pl │ ├── doc_files │ │ ├── simple.pl │ │ ├── simple.tcl │ │ ├── tcl_factorial.pl │ │ └── test.pl │ ├── examples │ │ ├── 8-queens.tcl │ │ ├── Makefile │ │ ├── canvas.pl │ │ ├── circule.xbm │ │ ├── interface │ │ │ ├── Doc │ │ │ │ ├── LPSETTINGS.pl │ │ │ │ └── NODISTRIBUTE │ │ │ ├── NODISTRIBUTE │ │ │ └── README │ │ ├── pers │ │ │ ├── phone_book │ │ │ │ └── phb_2.pl │ │ │ └── user │ │ │ │ └── phb_2.pl │ │ ├── phone_book.pl │ │ ├── phone_book.tcl │ │ ├── queens.pl │ │ ├── simple.pl │ │ ├── simple.tcl │ │ ├── tcl_calculator.pl │ │ ├── tcl_factorial.pl │ │ ├── test.pl │ │ ├── test.tcl │ │ ├── tk_calculator_aux.pl │ │ └── tk_test_aux.pl │ ├── examples_sicstus │ │ ├── 8-queens.pl │ │ ├── 8-queens.tcl │ │ ├── circule.xbm │ │ ├── hello_world.pl │ │ ├── hello_world_ciao.pl │ │ ├── phone_book.pl │ │ └── simple_tcl.pl │ ├── examples_with_problems │ │ ├── NOCOMPILE │ │ ├── NODISTRIBUTE │ │ ├── NOT_WORKING │ │ │ ├── NODISTRIBUTE │ │ │ ├── geometry1.pl │ │ │ ├── tcl_thr_example.pl │ │ │ ├── tk_options2.pl │ │ │ ├── tk_options3.pl │ │ │ └── tk_options4.pl │ │ ├── class │ │ │ ├── Doc │ │ │ │ ├── LPSETTINGS.pl │ │ │ │ └── NODISTRIBUTE │ │ │ ├── arc_class.pl │ │ │ ├── arc_class_doc.pl │ │ │ ├── canvas_class.pl │ │ │ ├── canvas_class_doc.pl │ │ │ ├── canvas_class_m.pl │ │ │ ├── geometry1.pl │ │ │ ├── geometry2.pl │ │ │ ├── geometry3.pl │ │ │ ├── oval_class.pl │ │ │ ├── oval_class_doc.pl │ │ │ ├── poly_class.pl │ │ │ ├── poly_class_doc.pl │ │ │ ├── principal_class.pl │ │ │ ├── shape_class.pl │ │ │ ├── shape_class_doc.pl │ │ │ └── stack.pl │ │ ├── interface │ │ │ ├── button_class.pl │ │ │ ├── checkbutton_class.pl │ │ │ ├── entry_class.pl │ │ │ ├── label_class.pl │ │ │ ├── menu_class.pl │ │ │ ├── menu_entry_class.pl │ │ │ ├── menubutton_class.pl │ │ │ ├── radiobutton_class.pl │ │ │ ├── scrollbar_class.pl │ │ │ ├── widget3.pl │ │ │ ├── widget_class.pl │ │ │ ├── widget_class_doc.pl │ │ │ ├── window_class.pl │ │ │ └── window_class_doc.pl │ │ ├── tcl_com_example.pl │ │ ├── tcl_command.pl │ │ ├── tcl_example.pl │ │ ├── test.pl │ │ ├── tk_example_file.tcl │ │ ├── tk_example_file.tcl.bak │ │ ├── tk_options.pl │ │ ├── tk_test.pl │ │ ├── tmp │ │ └── widget_class │ │ │ ├── Doc │ │ │ ├── LPSETTINGS.pl │ │ │ └── NODISTRIBUTE │ │ │ ├── bind_class.pl │ │ │ ├── button_class.pl │ │ │ ├── entry_class.pl │ │ │ ├── label_class.pl │ │ │ ├── menu_class.pl │ │ │ ├── menubutton_class.pl │ │ │ ├── principal_class2.pl │ │ │ ├── widget1.pl │ │ │ ├── widget2.pl │ │ │ ├── widget3.pl │ │ │ ├── widget4.pl │ │ │ ├── widget_class.pl │ │ │ ├── widget_class_doc.pl │ │ │ ├── widget_event.pl │ │ │ ├── window_class.pl │ │ │ └── window_class_doc.pl │ ├── tcl_command.itf │ ├── tcl_command.pl │ ├── tcl_command.po │ ├── tcltk.asr │ ├── tcltk.itf │ ├── tcltk.pl │ ├── tcltk.po │ ├── tcltk_low_level.asr │ ├── tcltk_low_level.itf │ ├── tcltk_low_level.pl │ └── tcltk_low_level.po │ └── tcltk_obj │ ├── Back │ ├── NODISTRIBUTE │ ├── arc_class.pl │ ├── arc_class_doc.pl │ ├── button_class.pl │ ├── button_class_doc.pl │ ├── canvas_class.pl │ ├── canvas_class_doc.pl │ ├── checkbutton_class.pl │ ├── checkbutton_class_doc.pl │ ├── entry_class.pl │ ├── entry_class_doc.pl │ ├── label_class.pl │ ├── label_class_doc.pl │ ├── line_class.pl │ ├── line_class_doc.pl │ ├── menu_class.pl │ ├── menu_class_doc.pl │ ├── menu_entry_class.pl │ ├── menu_entry_class_doc.pl │ ├── menubutton_class.pl │ ├── menubutton_class_doc.pl │ ├── oval_class.pl │ ├── oval_class_doc.pl │ ├── poly_class.pl │ ├── poly_class_doc.pl │ ├── radiobutton_class.pl │ ├── radiobutton_class_doc.pl │ ├── scrollbar_class.pl │ ├── shape_class.pl │ ├── shape_class_doc.pl │ ├── text_class.pl │ ├── text_class_doc.pl │ ├── widget_class.pl │ ├── widget_class_doc.pl │ ├── window_class.pl │ └── window_class_doc.pl │ └── Doc │ ├── Indexhead_window_class_doc.html │ └── Indextail_window_class_doc.html ├── asap-online-demo.css ├── asap-online-demo.js ├── benchmarks ├── advisor.pl ├── append.pl ├── ctl_specialised_petri.pl ├── ctl_trace.pl ├── depth.pl ├── even_odd.pl ├── groundunify.pl ├── liftsolve.pl ├── map.pl ├── match.pl ├── matrix.pl ├── maxlen.pl ├── member_from_delete.pl ├── power.pl ├── prop_int.pl ├── regular_expression.pl ├── relative.pl ├── reverse.pl ├── rotateprune.pl ├── transpose.pl └── vanilla_list.pl ├── bin ├── ciaoppcl ├── convex ├── dm └── mecce ├── doc ├── about.php ├── help.php ├── images │ ├── actions.jpg │ ├── empty.tiff │ ├── goal.jpg │ ├── plugins.jpg │ ├── upload.graffle │ ├── upload.jpg │ └── upload_crop.jpg ├── plug-ins.php ├── questions.html ├── svg.html └── tool_description │ ├── Screenshot_ecce.png │ ├── Spectree.pdf │ ├── ecce_tool.bbl │ ├── ecce_tool.tex │ ├── sig-alternate.cls │ ├── web_ecce.graffle │ └── web_ecce.pdf ├── downloads ├── Linux │ └── ecce ├── Mac │ ├── ecce │ └── ecce.dmg ├── Makefile └── Windows │ ├── ecce │ └── ecce.bat ├── ecce.jpg ├── ecce_bar.jpg ├── include ├── button.php ├── cgi_param.php ├── config.php ├── debug.php ├── gui_callback.php ├── gui_def.php ├── help_funktions.php ├── init.php ├── init_debug.php ├── mac_versions │ ├── config_mac.php │ ├── init_debug_mac.php │ └── init_mac.php └── tpl.php ├── index.php ├── index_debug.php ├── mecce.css ├── mecce.js ├── pl_out.php └── runtime_error.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/Makefile -------------------------------------------------------------------------------- /README-ECCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/README-ECCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/README.md -------------------------------------------------------------------------------- /auto_tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/auto_tests/Makefile -------------------------------------------------------------------------------- /auto_tests/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/auto_tests/test -------------------------------------------------------------------------------- /auto_tests/test_ciao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/auto_tests/test_ciao -------------------------------------------------------------------------------- /auto_tests/test_wo_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/auto_tests/test_wo_check -------------------------------------------------------------------------------- /auto_tests/testfiles/append.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/auto_tests/testfiles/append.pl -------------------------------------------------------------------------------- /auto_tests/testfiles/match.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/auto_tests/testfiles/match.pl -------------------------------------------------------------------------------- /bin/CygWin/ecce.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/bin/CygWin/ecce.tgz -------------------------------------------------------------------------------- /bin/Linux/ecce.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/bin/Linux/ecce.tgz -------------------------------------------------------------------------------- /bin/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/bin/Readme.txt -------------------------------------------------------------------------------- /bin/macintel/ecce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/bin/macintel/ecce -------------------------------------------------------------------------------- /bin/macppc/ecce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/bin/macppc/ecce -------------------------------------------------------------------------------- /convex_hull/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/convex_hull/Makefile -------------------------------------------------------------------------------- /convex_hull/builtin_norms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/convex_hull/builtin_norms.pl -------------------------------------------------------------------------------- /convex_hull/convex_analyser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/convex_hull/convex_analyser.pl -------------------------------------------------------------------------------- /convex_hull/convex_hull.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/convex_hull/convex_hull.pl -------------------------------------------------------------------------------- /convex_hull/convex_norm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/convex_hull/convex_norm.pl -------------------------------------------------------------------------------- /convex_hull/test_input.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/convex_hull/test_input.pl -------------------------------------------------------------------------------- /ecce_benchmarks/advisor.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/advisor.bm -------------------------------------------------------------------------------- /ecce_benchmarks/advisor.bm.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/advisor.bm.bor -------------------------------------------------------------------------------- /ecce_benchmarks/advisor.bm.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/advisor.bm.bsp -------------------------------------------------------------------------------- /ecce_benchmarks/applast.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/applast.bm -------------------------------------------------------------------------------- /ecce_benchmarks/benchmarkset.bs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/benchmarkset.bs -------------------------------------------------------------------------------- /ecce_benchmarks/contains.kmp.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/contains.kmp.bm -------------------------------------------------------------------------------- /ecce_benchmarks/contains.lam.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/contains.lam.bm -------------------------------------------------------------------------------- /ecce_benchmarks/depth.lam.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/depth.lam.bm -------------------------------------------------------------------------------- /ecce_benchmarks/doubleapp.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/doubleapp.bm -------------------------------------------------------------------------------- /ecce_benchmarks/ex_depth.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/ex_depth.bm -------------------------------------------------------------------------------- /ecce_benchmarks/ex_depth.mem.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/ex_depth.mem.bm -------------------------------------------------------------------------------- /ecce_benchmarks/flip.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/flip.bm -------------------------------------------------------------------------------- /ecce_benchmarks/grammar.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/grammar.bm -------------------------------------------------------------------------------- /ecce_benchmarks/liftsolve.app.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/liftsolve.app.bm -------------------------------------------------------------------------------- /ecce_benchmarks/liftsolve.db1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/liftsolve.db1.bm -------------------------------------------------------------------------------- /ecce_benchmarks/liftsolve.db2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/liftsolve.db2.bm -------------------------------------------------------------------------------- /ecce_benchmarks/map.reduce.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/map.reduce.bm -------------------------------------------------------------------------------- /ecce_benchmarks/map.rev.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/map.rev.bm -------------------------------------------------------------------------------- /ecce_benchmarks/martin/app.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/app.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/local.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/local.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/map.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/map.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/map.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/map.pro -------------------------------------------------------------------------------- /ecce_benchmarks/martin/match.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/match.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/match.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/match.pro -------------------------------------------------------------------------------- /ecce_benchmarks/martin/remove.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/remove.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/rev.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/rev.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/rev.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/rev.pro -------------------------------------------------------------------------------- /ecce_benchmarks/martin/ssuply.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/ssuply.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/upto.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/upto.pl -------------------------------------------------------------------------------- /ecce_benchmarks/martin/upto.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/martin/upto.pro -------------------------------------------------------------------------------- /ecce_benchmarks/match.kmp.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/match.kmp.bm -------------------------------------------------------------------------------- /ecce_benchmarks/matchapp.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/matchapp.bm -------------------------------------------------------------------------------- /ecce_benchmarks/maxlength.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/maxlength.bm -------------------------------------------------------------------------------- /ecce_benchmarks/model_elim.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/model_elim.bm -------------------------------------------------------------------------------- /ecce_benchmarks/ng_unify.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/ng_unify.bm -------------------------------------------------------------------------------- /ecce_benchmarks/ng_unify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/ng_unify.pl -------------------------------------------------------------------------------- /ecce_benchmarks/orig/advisor.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/advisor.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/applast.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/applast.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/depth.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/depth.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/flip.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/flip.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/grammar.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/grammar.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/map.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/map.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/match.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/match.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/regexp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/regexp.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/remove.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/remove.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/remove2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/remove2.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/rev.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/rev.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/revlast.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/revlast.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/ssuply.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/ssuply.pro -------------------------------------------------------------------------------- /ecce_benchmarks/orig/upto.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/orig/upto.pro -------------------------------------------------------------------------------- /ecce_benchmarks/qsort_ecce.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/qsort_ecce.pl -------------------------------------------------------------------------------- /ecce_benchmarks/regexp.r1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/regexp.r1.bm -------------------------------------------------------------------------------- /ecce_benchmarks/regexp.r2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/regexp.r2.bm -------------------------------------------------------------------------------- /ecce_benchmarks/regexp.r3.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/regexp.r3.bm -------------------------------------------------------------------------------- /ecce_benchmarks/regexp1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/regexp1.bm -------------------------------------------------------------------------------- /ecce_benchmarks/relative.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/relative.bm -------------------------------------------------------------------------------- /ecce_benchmarks/remove.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/remove.bm -------------------------------------------------------------------------------- /ecce_benchmarks/remove2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/remove2.bm -------------------------------------------------------------------------------- /ecce_benchmarks/rev.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/rev.bm -------------------------------------------------------------------------------- /ecce_benchmarks/rev_acc_type.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/rev_acc_type.bm -------------------------------------------------------------------------------- /ecce_benchmarks/revlast.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/revlast.bm -------------------------------------------------------------------------------- /ecce_benchmarks/rotateprune.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/rotateprune.bm -------------------------------------------------------------------------------- /ecce_benchmarks/ssuply.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/ssuply.bm -------------------------------------------------------------------------------- /ecce_benchmarks/time.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/time.pl -------------------------------------------------------------------------------- /ecce_benchmarks/transpose.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/transpose.bm -------------------------------------------------------------------------------- /ecce_benchmarks/upto.sum1.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/upto.sum1.bm -------------------------------------------------------------------------------- /ecce_benchmarks/upto.sum2.bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_benchmarks/upto.sum2.bm -------------------------------------------------------------------------------- /ecce_examples/death.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/death.pl -------------------------------------------------------------------------------- /ecce_examples/demo/apdtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/apdtest.pl -------------------------------------------------------------------------------- /ecce_examples/demo/basic/less.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/basic/less.pl -------------------------------------------------------------------------------- /ecce_examples/demo/basic/nrev.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/basic/nrev.pl -------------------------------------------------------------------------------- /ecce_examples/demo/basic/reg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/basic/reg.pl -------------------------------------------------------------------------------- /ecce_examples/demo/bsets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/bsets.pl -------------------------------------------------------------------------------- /ecce_examples/demo/henk/henkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/henk/henkv -------------------------------------------------------------------------------- /ecce_examples/demo/ho.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/ho.pl -------------------------------------------------------------------------------- /ecce_examples/demo/matrix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/matrix.pl -------------------------------------------------------------------------------- /ecce_examples/demo/thm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/demo/thm.pl -------------------------------------------------------------------------------- /ecce_examples/even_odd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/even_odd.pl -------------------------------------------------------------------------------- /ecce_examples/finkel_counter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/finkel_counter.pl -------------------------------------------------------------------------------- /ecce_examples/grandmother.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/grandmother.pl -------------------------------------------------------------------------------- /ecce_examples/imp_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/imp_int.pl -------------------------------------------------------------------------------- /ecce_examples/knows_logic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/knows_logic.pl -------------------------------------------------------------------------------- /ecce_examples/leechinsoon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/leechinsoon.pl -------------------------------------------------------------------------------- /ecce_examples/mul_plus.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/mul_plus.pl -------------------------------------------------------------------------------- /ecce_examples/mul_plus.xce.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/mul_plus.xce.pdf -------------------------------------------------------------------------------- /ecce_examples/mul_plus_ciao.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/mul_plus_ciao.pl -------------------------------------------------------------------------------- /ecce_examples/mymember.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/mymember.pl -------------------------------------------------------------------------------- /ecce_examples/nonterm.pl: -------------------------------------------------------------------------------- 1 | p(X) :- p(X),X=a. -------------------------------------------------------------------------------- /ecce_examples/path.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/path.pl -------------------------------------------------------------------------------- /ecce_examples/petri-nets/csm.P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/csm.P -------------------------------------------------------------------------------- /ecce_examples/petri-nets/csm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/csm.pl -------------------------------------------------------------------------------- /ecce_examples/petri-nets/ctl.P: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/ctl.P -------------------------------------------------------------------------------- /ecce_examples/petri-nets/efm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/efm.pl -------------------------------------------------------------------------------- /ecce_examples/petri-nets/fms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/fms.pl -------------------------------------------------------------------------------- /ecce_examples/petri-nets/rtp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/rtp.pl -------------------------------------------------------------------------------- /ecce_examples/petri-nets/rw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/petri-nets/rw.pl -------------------------------------------------------------------------------- /ecce_examples/prop_int_neg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/prop_int_neg.pl -------------------------------------------------------------------------------- /ecce_examples/rultest.process.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/rultest.process.pl -------------------------------------------------------------------------------- /ecce_examples/rultest.test4.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/rultest.test4.pl -------------------------------------------------------------------------------- /ecce_examples/rultest.unsafe.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/rultest.unsafe.pl -------------------------------------------------------------------------------- /ecce_examples/rultests.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/rultests.pl -------------------------------------------------------------------------------- /ecce_examples/sharing_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/sharing_test.pl -------------------------------------------------------------------------------- /ecce_examples/simplify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/simplify.pl -------------------------------------------------------------------------------- /ecce_examples/slicing/applen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/slicing/applen.pl -------------------------------------------------------------------------------- /ecce_examples/verysimple.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/verysimple.pl -------------------------------------------------------------------------------- /ecce_examples/verysimple2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_examples/verysimple2.pl -------------------------------------------------------------------------------- /ecce_source/JavaPrologFlag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/JavaPrologFlag.class -------------------------------------------------------------------------------- /ecce_source/JavaPrologFlag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/JavaPrologFlag.java -------------------------------------------------------------------------------- /ecce_source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/Makefile -------------------------------------------------------------------------------- /ecce_source/abstract/abstract.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/abstract/abstract.pl -------------------------------------------------------------------------------- /ecce_source/benchmark.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/benchmark.pl -------------------------------------------------------------------------------- /ecce_source/bimtools.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/compile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/compile.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/gensym.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/gensym.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/hash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/hash.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/instance.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/instance.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/makeflat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/makeflat.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/makeiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/makeiff.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/msg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/msg.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/prepost.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/prepost.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/stdlists.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/stdlists.pl -------------------------------------------------------------------------------- /ecce_source/bimtools/test.pl: -------------------------------------------------------------------------------- 1 | X="ciao_specific.pl". 2 | :- import(X). 3 | 4 | print(not(true)). 5 | -------------------------------------------------------------------------------- /ecce_source/bimtools/unify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bimtools/unify.pl -------------------------------------------------------------------------------- /ecce_source/bottomUp/bottomUp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bottomUp/bottomUp.pl -------------------------------------------------------------------------------- /ecce_source/bottomUp/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bottomUp/test.pl -------------------------------------------------------------------------------- /ecce_source/bottomUp/toDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/bottomUp/toDo.txt -------------------------------------------------------------------------------- /ecce_source/c: -------------------------------------------------------------------------------- 1 | make clean ; ciao < german-ecce-ciao-test 2 | -------------------------------------------------------------------------------- /ecce_source/calc_chtree.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/calc_chtree.pl -------------------------------------------------------------------------------- /ecce_source/changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/changes -------------------------------------------------------------------------------- /ecce_source/chtree_tools.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/chtree_tools.pl -------------------------------------------------------------------------------- /ecce_source/code_generator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/code_generator.pl -------------------------------------------------------------------------------- /ecce_source/constraints.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/constraints.pl -------------------------------------------------------------------------------- /ecce_source/depth_bound.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/depth_bound.pl -------------------------------------------------------------------------------- /ecce_source/dot_generator.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/dot_generator.pl -------------------------------------------------------------------------------- /ecce_source/dynpreds.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/dynpreds.pl -------------------------------------------------------------------------------- /ecce_source/ecce_bim.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_bim.pl -------------------------------------------------------------------------------- /ecce_source/ecce_ciao.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_ciao.pl -------------------------------------------------------------------------------- /ecce_source/ecce_ciao_entry.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_ciao_entry.pl -------------------------------------------------------------------------------- /ecce_source/ecce_cli.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_cli.pl -------------------------------------------------------------------------------- /ecce_source/ecce_compile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_compile.pl -------------------------------------------------------------------------------- /ecce_source/ecce_cs.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_cs.tar.gz -------------------------------------------------------------------------------- /ecce_source/ecce_main.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_main.pl -------------------------------------------------------------------------------- /ecce_source/ecce_no_rt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_no_rt.pl -------------------------------------------------------------------------------- /ecce_source/ecce_no_rt2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_no_rt2.pl -------------------------------------------------------------------------------- /ecce_source/ecce_no_rt_mod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_no_rt_mod.pl -------------------------------------------------------------------------------- /ecce_source/ecce_sicstus.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_sicstus.pl -------------------------------------------------------------------------------- /ecce_source/ecce_tcltk.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_tcltk.pl -------------------------------------------------------------------------------- /ecce_source/ecce_tcltk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ecce_tcltk.tcl -------------------------------------------------------------------------------- /ecce_source/front_end.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/front_end.pl -------------------------------------------------------------------------------- /ecce_source/global_tree.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/global_tree.pl -------------------------------------------------------------------------------- /ecce_source/homeomorphic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/homeomorphic.pl -------------------------------------------------------------------------------- /ecce_source/ic_gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/ic_gen.pl -------------------------------------------------------------------------------- /ecce_source/icons/ecce_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/icons/ecce_logo.gif -------------------------------------------------------------------------------- /ecce_source/index_tools.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/index_tools.pl -------------------------------------------------------------------------------- /ecce_source/japro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/japro.dll -------------------------------------------------------------------------------- /ecce_source/japro.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/japro.pl -------------------------------------------------------------------------------- /ecce_source/main_functions.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/main_functions.pl -------------------------------------------------------------------------------- /ecce_source/modes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/modes.pl -------------------------------------------------------------------------------- /ecce_source/more_specific/mst.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/more_specific/mst.pl -------------------------------------------------------------------------------- /ecce_source/msv_analysis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/msv_analysis.pl -------------------------------------------------------------------------------- /ecce_source/multi_meta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/multi_meta.pl -------------------------------------------------------------------------------- /ecce_source/options_ciao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/options_ciao -------------------------------------------------------------------------------- /ecce_source/parameters.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/parameters.pl -------------------------------------------------------------------------------- /ecce_source/parametric_files.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/parametric_files.pl -------------------------------------------------------------------------------- /ecce_source/post_processor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/post_processor.pl -------------------------------------------------------------------------------- /ecce_source/prb/a.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/a.pl -------------------------------------------------------------------------------- /ecce_source/prb/b/b.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/b/b.pl -------------------------------------------------------------------------------- /ecce_source/prb/b/c.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/b/c.pl -------------------------------------------------------------------------------- /ecce_source/prb/bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/bench.pl -------------------------------------------------------------------------------- /ecce_source/prb/m.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/m.pl -------------------------------------------------------------------------------- /ecce_source/prb/m1.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/m1.pl -------------------------------------------------------------------------------- /ecce_source/prb/m2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/prb/m2.pl -------------------------------------------------------------------------------- /ecce_source/raf_analysis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/raf_analysis.pl -------------------------------------------------------------------------------- /ecce_source/rul/INTERFACE.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/INTERFACE.pl -------------------------------------------------------------------------------- /ecce_source/rul/Test/readMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/Test/readMe -------------------------------------------------------------------------------- /ecce_source/rul/Test/rultest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/Test/rultest.pl -------------------------------------------------------------------------------- /ecce_source/rul/analyticFold.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/analyticFold.pl -------------------------------------------------------------------------------- /ecce_source/rul/auxil.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/auxil.pl -------------------------------------------------------------------------------- /ecce_source/rul/compressor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/compressor.pl -------------------------------------------------------------------------------- /ecce_source/rul/domCallDepend.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/domCallDepend.pl -------------------------------------------------------------------------------- /ecce_source/rul/ecceRUL.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/ecceRUL.pl -------------------------------------------------------------------------------- /ecce_source/rul/gensym2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/gensym2.pl -------------------------------------------------------------------------------- /ecce_source/rul/interSection.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/interSection.pl -------------------------------------------------------------------------------- /ecce_source/rul/msg2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/msg2.pl -------------------------------------------------------------------------------- /ecce_source/rul/prePostCon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/prePostCon.pl -------------------------------------------------------------------------------- /ecce_source/rul/proSiNo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/proSiNo.pl -------------------------------------------------------------------------------- /ecce_source/rul/progSetOp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/progSetOp.pl -------------------------------------------------------------------------------- /ecce_source/rul/shorten.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/shorten.pl -------------------------------------------------------------------------------- /ecce_source/rul/subType.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/subType.pl -------------------------------------------------------------------------------- /ecce_source/rul/toDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/toDo.txt -------------------------------------------------------------------------------- /ecce_source/rul/unfold2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/unfold2.pl -------------------------------------------------------------------------------- /ecce_source/rul/upperBound.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/rul/upperBound.pl -------------------------------------------------------------------------------- /ecce_source/run-mecce-sicstus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/run-mecce-sicstus -------------------------------------------------------------------------------- /ecce_source/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/s -------------------------------------------------------------------------------- /ecce_source/self_check.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/self_check.pl -------------------------------------------------------------------------------- /ecce_source/sicstus_expansion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/sicstus_expansion.pl -------------------------------------------------------------------------------- /ecce_source/statistics.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/statistics.pl -------------------------------------------------------------------------------- /ecce_source/unfold_helper.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/unfold_helper.pl -------------------------------------------------------------------------------- /ecce_source/unfold_history.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/unfold_history.pl -------------------------------------------------------------------------------- /ecce_source/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/usage.txt -------------------------------------------------------------------------------- /ecce_source/whistle/whistle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/whistle/whistle.pl -------------------------------------------------------------------------------- /ecce_source/xecce.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/ecce_source/xecce.pl -------------------------------------------------------------------------------- /nmecce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/nmecce.php -------------------------------------------------------------------------------- /nmecce_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/nmecce_debug.php -------------------------------------------------------------------------------- /pl_out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/pl_out.php -------------------------------------------------------------------------------- /rul_source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/rul_source/Makefile -------------------------------------------------------------------------------- /rul_source/app.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/rul_source/app.pl -------------------------------------------------------------------------------- /rul_source/newreg_cli.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/rul_source/newreg_cli.pl -------------------------------------------------------------------------------- /tests/append_rev.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/tests/append_rev.pl -------------------------------------------------------------------------------- /tests/run_tests.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/tests/run_tests.csh -------------------------------------------------------------------------------- /tests/tmp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/tests/tmp.pl -------------------------------------------------------------------------------- /www/CiaoDE/CIAODESETTINGS.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/CIAODESETTINGS.itf -------------------------------------------------------------------------------- /www/CiaoDE/CIAODESETTINGS.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/CIAODESETTINGS.pl -------------------------------------------------------------------------------- /www/CiaoDE/CIAODESETTINGS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/CIAODESETTINGS.po -------------------------------------------------------------------------------- /www/CiaoDE/CIAODESHARED.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/CIAODESHARED.itf -------------------------------------------------------------------------------- /www/CiaoDE/CIAODESHARED.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/CIAODESHARED.pl -------------------------------------------------------------------------------- /www/CiaoDE/CIAODESHARED.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/CIAODESHARED.po -------------------------------------------------------------------------------- /www/CiaoDE/GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/GPL -------------------------------------------------------------------------------- /www/CiaoDE/LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/LGPL -------------------------------------------------------------------------------- /www/CiaoDE/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/Makefile -------------------------------------------------------------------------------- /www/CiaoDE/Makefile.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/Makefile.itf -------------------------------------------------------------------------------- /www/CiaoDE/Makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/Makefile.pl -------------------------------------------------------------------------------- /www/CiaoDE/Makefile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/Makefile.po -------------------------------------------------------------------------------- /www/CiaoDE/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/README -------------------------------------------------------------------------------- /www/CiaoDE/bin/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciao -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciao-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciao-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciao-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciao-shell -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciao-shell-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciao-shell-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciao_get_arch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciao_get_arch -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaoc -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaoc-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaoc-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaopp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaopp -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaopp-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaopp-1.0 -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaopp-1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaopp-1.2 -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaoppcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaoppcl -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaoppcl-1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaoppcl-1.2 -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaosh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaosh -------------------------------------------------------------------------------- /www/CiaoDE/bin/ciaosh-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/ciaosh-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/cleandirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/cleandirs -------------------------------------------------------------------------------- /www/CiaoDE/bin/cleandirs-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/cleandirs-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/compiler_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/compiler_output -------------------------------------------------------------------------------- /www/CiaoDE/bin/fileinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/fileinfo -------------------------------------------------------------------------------- /www/CiaoDE/bin/fileinfo-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/fileinfo-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/get_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/get_deps -------------------------------------------------------------------------------- /www/CiaoDE/bin/get_deps-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/get_deps-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/lpdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/lpdoc -------------------------------------------------------------------------------- /www/CiaoDE/bin/lpdoc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/lpdoc-2.0 -------------------------------------------------------------------------------- /www/CiaoDE/bin/lpmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/lpmake -------------------------------------------------------------------------------- /www/CiaoDE/bin/lpmake-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/lpmake-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/lpmake.sta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/lpmake.sta -------------------------------------------------------------------------------- /www/CiaoDE/bin/pldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/pldiff -------------------------------------------------------------------------------- /www/CiaoDE/bin/pldiff-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/pldiff-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/prolog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/prolog -------------------------------------------------------------------------------- /www/CiaoDE/bin/show_asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/show_asr -------------------------------------------------------------------------------- /www/CiaoDE/bin/show_asr-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/show_asr-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/bin/synch_actions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/synch_actions -------------------------------------------------------------------------------- /www/CiaoDE/bin/viewpo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/viewpo -------------------------------------------------------------------------------- /www/CiaoDE/bin/viewpo-1.13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/bin/viewpo-1.13 -------------------------------------------------------------------------------- /www/CiaoDE/ciao/CIAOSETTINGS.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/CIAOSETTINGS.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/CIAOSETTINGS.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/CIAOSETTINGS.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/CIAOSETTINGS.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/CIAOSETTINGS.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/CIAOSHARED.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/CIAOSHARED.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/CIAOSHARED.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/CIAOSHARED.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/CIAOSHARED.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/CIAOSHARED.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/COPYRIGHT -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Makefile -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Makefile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Makefile.bak -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Makefile.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Makefile.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Makefile.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Makefile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Makefile.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/SETTINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/SETTINGS -------------------------------------------------------------------------------- /www/CiaoDE/ciao/SETTINGS.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/SETTINGS.old -------------------------------------------------------------------------------- /www/CiaoDE/ciao/SETTINGS_AUTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/SETTINGS_AUTO -------------------------------------------------------------------------------- /www/CiaoDE/ciao/SETTINGS_DEFAULT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/SETTINGS_DEFAULT -------------------------------------------------------------------------------- /www/CiaoDE/ciao/SHARED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/SHARED -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Win32/Makefile -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/bat_skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Win32/bat_skel -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/bin/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/bin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Win32/bin/README -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/ciaopl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Win32/ciaopl.ico -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/ciaopo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Win32/ciaopo.ico -------------------------------------------------------------------------------- /www/CiaoDE/ciao/Win32/wsetup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/Win32/wsetup.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/directives/multi2.pl: -------------------------------------------------------------------------------- 1 | 2 | %:- multifile q/0. 3 | 4 | q :- display(2), nl. 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/modules/nr.pl: -------------------------------------------------------------------------------- 1 | 2 | p:- n:nr. 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/modules/pepe.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/modules/q.pl: -------------------------------------------------------------------------------- 1 | 2 | q(b). 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/modules/redefine.pl: -------------------------------------------------------------------------------- 1 | 2 | true. 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/qexec/error.pl: -------------------------------------------------------------------------------- 1 | 2 | top(X) :- X is a. 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/qexec/fail.pl: -------------------------------------------------------------------------------- 1 | 2 | top(_):- fail. 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/benchmark/qexec/hw.pl: -------------------------------------------------------------------------------- 1 | 2 | main(_) :- 3 | display('Hello world 4 | '). 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bin/LINUXi86/wam_defs.h: -------------------------------------------------------------------------------- 1 | 2 | int wam(Argdecl, goal_descriptor_p); 3 | 4 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bin/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bin/ciaoengine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/bin/ciaoengine -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Fixed/amosbug/c.pl: -------------------------------------------------------------------------------- 1 | :- module(_, _, []). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Fixed/isa/t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/bugs/Fixed/isa/t -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/fastrw_conc/port.pl: -------------------------------------------------------------------------------- 1 | port(57791). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/lib_modules_test/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/lib_modules_test/aa.pl: -------------------------------------------------------------------------------- 1 | :-(main,nl) . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/comps_actualization.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/comps_info.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/db_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/db_tables.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/field_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/table_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/table_fields.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/table_order.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/type_arg.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv-backup/db/type_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/comps_actualization.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/comps_info.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/db_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/db_tables.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/field_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/table_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/table_fields.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/table_order.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/type_arg.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/segv/db/type_def.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Pending/sformat/README: -------------------------------------------------------------------------------- 1 | Main file: inductive_ctcheck.pl 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Unclassified/c2/cogen-tools.pl: -------------------------------------------------------------------------------- 1 | 2 | :- module('cogen-tools',[b/1]). 3 | b(1). -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Unclassified/c_itf/b.pl: -------------------------------------------------------------------------------- 1 | 2 | :- module(b,[p/0],[]). 3 | 4 | p. 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Unclassified/c_itf/d.pl: -------------------------------------------------------------------------------- 1 | 2 | :- module(d,[p/0],[]). 3 | 4 | p. 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/bugs/Unclassified/c_itf/e.pl: -------------------------------------------------------------------------------- 1 | 2 | :- module(e,[p/1],[]). 3 | 4 | p(_). 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/ciaoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/ciaoc/Makefile -------------------------------------------------------------------------------- /www/CiaoDE/ciao/ciaoc/ciaoc.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/ciaoc/ciaoc.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/ciaoc/ciaoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/ciaoc/ciaoc.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/ciaoc/ciaoc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/ciaoc/ciaoc.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/ciaoc/gen_asr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/ciaoc/gen_asr.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/ciaoc/gen_asr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/ciaoc/gen_asr.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/client.bat -------------------------------------------------------------------------------- /www/CiaoDE/ciao/compatibility/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/compatibility/sicstus3/dcg.pl: -------------------------------------------------------------------------------- 1 | 2 | %% DCG support predicates are built-in in SICStus3 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/compatibility/sicstus3/format.pl: -------------------------------------------------------------------------------- 1 | 2 | %% Format predicates are built-in in SICStus3 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/compatibility/sicstus3/iso.pl: -------------------------------------------------------------------------------- 1 | 2 | %% ISO predicates are built-in in SICStus3 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/compatibility/sicstus3/streams.pl: -------------------------------------------------------------------------------- 1 | 2 | %% Stream predicates are built-in in SICStus3 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/compatibility/sicstus3/ttyout.pl: -------------------------------------------------------------------------------- 1 | 2 | %% Ttyout predicates are built-in in SICStus3 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/contrib/Makefile -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/catcher/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/chartlib/doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/chartlib/install_utils.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/chat80/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/chat80/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/costmodel/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/distutils/configutils.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/distutils/distclean.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/distutils/distutils.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/fd/fd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/contrib/fd/fd.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/fd/fd_bounds.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/fd/fd_rt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/fd/fd_tr.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/ho_unif/hnorm.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/ho_unif/lambda_terms.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/ho_unif/pattern_unify.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/hrtimer/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/hrtimer/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/hrtimer/hrtime_shadow.h.bottom: -------------------------------------------------------------------------------- 1 | #endif /* _HRTIME_SHADOW_H_ */ 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/hrtimer/include_hrtime.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/lazy/examples/module2.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/lazy/ops.pl: -------------------------------------------------------------------------------- 1 | :- op(1170, fx, (lazy)). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/mycin/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/mycin/mycin_error_reporting.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/mycin_rulebase/examples/Academic/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/mycin_rulebase/examples/ProjectEvaluationExpert/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/mycin_rulebase/mycin_rulebase_error_reporting.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/persvalue.old/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/persvalue.old/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/persvalue.old/user/bar_1.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/persvalue.old/user/bar_1_ops.pl: -------------------------------------------------------------------------------- 1 | z('user:bar'(a)) . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/persvalue/persvalue.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/persvalue/persvalue_base.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/profiler/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/provrml/FDvis/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/provrml/FDvis/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/provrml/field_value_check.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/provrml/possible.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/shvarcom/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/shvarcom/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/sicstus-ugraphs-other/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/sicstus-ugraphs-other/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/tester/test/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/time_analyzer/test/5e/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/time_analyzer/test/6e/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/transactions/transactionsrt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/truster/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/truster/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/truster/truster_rt.pl: -------------------------------------------------------------------------------- 1 | :- module(truster_rt, _, [assertions, regtypes]). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/contrib/xdr_handle/examples/pers/html_manager/xdr_tree_c_1.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/devel-add-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/devel-add-path -------------------------------------------------------------------------------- /www/CiaoDE/ciao/dist/Makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/dist/Makefile.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/dist/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/dist/REMINDERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/dist/REMINDERS -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/CQS/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/CQS/cqs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/doc/CQS/cqs.tex -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/INDEV/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/doc/Makefile.old -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/brochure/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/common/CiaoTail.info: -------------------------------------------------------------------------------- 1 | [End of Ciao system info manuals] 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/common/DOING: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/compiler/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/test/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/tutorial/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/doc/tutorial/SRC/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/emacs-mode/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/emacs-mode/Notes -------------------------------------------------------------------------------- /www/CiaoDE/ciao/emacs-mode/compare: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | diff $1 ~/emacs-mode-1.9-new/$1 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/emacs-mode/doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/Alternatives/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/DMALLOC.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/DMALLOC.H -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/M_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/M_time.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/M_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/M_time.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/Makefile -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/README -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/TAGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/TAGS -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/access.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/alloc.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/alloc.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/attr.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/bignum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/bignum.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/builtin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/builtin.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/ciao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/ciao.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/ciao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/ciao.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/compat.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/debug.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/dynlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/dynlink.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/format.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/functor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/functor -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/gauge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/gauge.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/heapgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/heapgc.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/initial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/initial.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/initial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/initial.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/inout.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/locks.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/locks.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/main.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/main.bak -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/main.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/main.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/misc.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/nondet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/nondet.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/predtyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/predtyp.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/qget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/qget.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/qinsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/qinsert.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/qread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/qread.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/stacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/stacks.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/start.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/streams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/streams.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/support.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/support.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/tasks.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/threads.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/timing.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/wam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/wam.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/wam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/wam.h -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/wam_defs.h: -------------------------------------------------------------------------------- 1 | 2 | int wam(Argdecl, goal_descriptor_p); 3 | 4 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/engine/wamread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/engine/wamread.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/DOTcshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/DOTcshrc -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/DOTprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/DOTprofile -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/Makefile.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/Makefile.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/Makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/Makefile.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/Makefile.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/Makefile.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/checkline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/checkline.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/chsuff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/chsuff -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/ciao.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/ciao.skel -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cleanco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/cleanco -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cleandirs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/cleandirs.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cleandirs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/cleandirs.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cxref/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cxref/cxtry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/cxref/cxtry -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cxref/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/cxref/out -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/cxref/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/cxref/s -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/fileinfo.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/fileinfo.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/fileinfo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/fileinfo.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/fileinfo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/fileinfo.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/fix_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/fix_size -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/fix_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/fix_size.c -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/get_deps.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/get_deps.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/get_deps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/get_deps.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/get_deps.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/get_deps.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/lpmake.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/lpmake.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/lpmake.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/lpmake.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/lpmake.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/lpmake.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/makealldist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/makealldist -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/mlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/mlink -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/pldiff.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/pldiff.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/pldiff.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/pldiff.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/pldiff.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/pldiff.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/remove_dirname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "rm -rf $(dirname $1)" 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/show_asr.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/show_asr.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/show_asr.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/show_asr.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/show_asr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/show_asr.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/to.bak: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mv $1 $1.bak 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/use.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/use.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/viewitf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/viewitf.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/viewpo.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/viewpo.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/viewpo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/viewpo.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/viewpo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/viewpo.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/xfrefs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/xfrefs.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/etc/xmrefs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/etc/xmrefs.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/examples/README -------------------------------------------------------------------------------- /www/CiaoDE/ciao/examples/hw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/examples/hw.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/examples/hw.pls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/examples/hw.pls -------------------------------------------------------------------------------- /www/CiaoDE/ciao/examples/iclp01_contest/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/include/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/install.bat -------------------------------------------------------------------------------- /www/CiaoDE/ciao/installer/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/installer/CONFIG -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/Makefile.old -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/assertions/doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/assertions/test/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/attrdump.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/attrdump.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/attrdump.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/attrdump.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/attrdump.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/attrdump.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/attrdump.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/autoconfig/autoconfig_base.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/between.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/between.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/between.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/between.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/between.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/between.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/between.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/between.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/between.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/between.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/classic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/classic.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/NOTES: -------------------------------------------------------------------------------- 1 | * module/2-3 declaration cannot be created by term expansion 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/compiler.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/compressed_bytecode.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/emulator_data.pl: -------------------------------------------------------------------------------- 1 | x_and_y_offsets(37, 2). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/exemaker.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/pl2wam.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/compiler/translation.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/ctrlcclean.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dcg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dcg.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dcg_doc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dcg_doc.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/debug.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/debug.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dec10_io.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dec10_io.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dec10_io.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dec10_io.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dec10_io.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dec10_io.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dec10_io.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dec10_io.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dec10_io.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/default.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/default.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dict.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dict.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dict.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dict.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dict.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dict.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dict.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dict.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dynamic.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dynamic.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dynamic.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dynamic.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dynamic.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dynamic.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dynamic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dynamic.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/dynamic.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/dynamic.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/engine/NOCOMPILE: -------------------------------------------------------------------------------- 1 | Compiled automatically. 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/engine/mattr_global.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/errhandle.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/errhandle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/errhandle.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/errhandle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/errhandle.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/fastrw.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/fastrw.disabled/NOCOMPILE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/fastrw.disabled/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/fastrw.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/fastrw.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/fastrw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/fastrw.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/fastrw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/fastrw.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/filenames.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/filenames.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/filenames.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/filenames.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/foreign_interface/embedding_examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/foreign_interface/embedding_examples/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/foreign_interface/foreign_inliner_tr.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/foreign_interface/foreign_interface_ops.pl: -------------------------------------------------------------------------------- 1 | :- op(1100, xfy, -->). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/format.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/format.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/format.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/format.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/format.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/format.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/format.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/format.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/format.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/goal_trans.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/hiord.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/hiord.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/iso.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_doc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/iso_doc.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_incomplete.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_misc.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_misc.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/iso_misc.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_misc.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/iso_misc.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_misc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/iso_misc.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/iso_misc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/iso_misc.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/isomodes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/isomodes.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/libpaths.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/libpaths.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/libpaths.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/libpaths.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/libpaths.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/libpaths.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/libpaths.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/lists.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/lists.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/lists.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/lists.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/lists.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/lists.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/lists.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/lists.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/lists.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/lists.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/llists.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/llists.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/llists.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/llists.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/llists.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/llists.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/llists.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/llists.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/messages.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/messages.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/messages.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/messages.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/messages.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/messages.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/messages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/messages.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/messages.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/miscprops.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/miscprops.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/miscprops.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/miscprops.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/nodebug.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/nodebug.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/nonpure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/nonpure.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/odd.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/odd.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/odd.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/odd.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/odd.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/odd.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/odd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/odd.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/odd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/odd.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/operators.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/operators.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/operators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/operators.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/prelude.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/prelude.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/pure.pl: -------------------------------------------------------------------------------- 1 | % This file is empty 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/pure_doc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/pure_doc.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/read.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/read.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/read.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/read.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/read.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/read.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/read.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/read.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/read.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/read.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sets.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sets.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sets.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sets.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sets.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sets.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sets.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sort.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sort.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sort.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sort.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sort.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sort.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sort.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sort.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/sort.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/sort.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/srcbyrd/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/streams.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/streams.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/streams.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/streams.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/streams.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/streams.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/streams.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/strings.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/strings.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/strings.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/strings.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/strings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/strings.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/strings.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/strings.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/system.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/system.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/system.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/system.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/system.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/system.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/system.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/system.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/system.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/system.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/terms.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/terms.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/terms.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/terms.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/terms.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/terms.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/terms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/terms.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/tokenize.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/tokenize.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/tokenize.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/tokenize.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/tokenize.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/tokenize.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/tokenize.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/trace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/trace.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/ttyout.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/ttyout.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/ttyout.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/ttyout.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/ttyout.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/ttyout.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/ttyout.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/ttyout.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/ttyout.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/ttyout.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/types.old/NOCOMPILE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/types.old/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write.asr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/write.asr -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/write.ast -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write.itf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/write.itf -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/write.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/lib/write.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write_c/write_c.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/lib/write_c/write_tokens.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/argnamesvv/NOCOMPILE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/argnamesvv/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/benchmarking/doc/benchmarkingrefs.el: -------------------------------------------------------------------------------- 1 | (setq refs-alist '( 2 | )) 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/exec/hello.pl: -------------------------------------------------------------------------------- 1 | % :- public main/0. 2 | 3 | boot:- display('hello 4 | '). 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/exec/prolog/Makefile: -------------------------------------------------------------------------------- 1 | tags: 2 | etags -l none -r '/^[a-zA-Z0-9_]+(/' *.pl 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/exec/prolog/o: -------------------------------------------------------------------------------- 1 | q -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/ho_test/ho_stack.pl: -------------------------------------------------------------------------------- 1 | 2 | :- include(ho). 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/math/NOTE: -------------------------------------------------------------------------------- 1 | A extinguir 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/math/b/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/multi_dynamic/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/Test/c6.terms: -------------------------------------------------------------------------------- 1 | ['#VRML V2.0 utf8 narmare sanningen',pik]. 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/Test/p0.wrl: -------------------------------------------------------------------------------- 1 | #VRML V2.0 utf8 2 | 3 | NULL 4 | 5 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/Test/p11.wrl: -------------------------------------------------------------------------------- 1 | #VRML V2.0 utf8 narmare sanningen 2 | 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.co: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.cos: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.cp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.cps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.ky: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.kys: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.mos: -------------------------------------------------------------------------------- 1 | \initial {O} 2 | \entry {\code {out/1}}{25} 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.pg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.pgs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.pr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.prs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.tp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.tps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.vr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRML.vrs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library.development/vrml/doc/ProVRMLrefs.el: -------------------------------------------------------------------------------- 1 | (setq refs-alist '( 2 | )) 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/actmods/actmodrt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/actmods/filebased_locate.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/actmods/tmpbased_common.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/actmods/webbased_common.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/agents/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/agents/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/agents/protocols/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/amp/.NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/amp/.NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ams/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ams/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ams/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/ams/TODO -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ams/examples/class/stack.pl: -------------------------------------------------------------------------------- 1 | :- include('stack_co.dup.pl'). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andorra/andorra_builtins.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andorra/andorra_rt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andorra/benchmarks/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andorra/benchmarks/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andorra/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/README: -------------------------------------------------------------------------------- 1 | Previous version of the andprolog package. 2 | 3 | 4 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/examples/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/nodist/.NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/nodist/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/andprolog/old_andprolog/nodist/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/argnames/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/argnamesv/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/argnamesv/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/argnamesv/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/arithpreds.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/assoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/assoc.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/assoc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/assoc.po -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/attribute_dump/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/bf/af.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/bf/af.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/bf/bf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/bf/bf.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/byrdbox/byrd.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/cges.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/cges.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ciaodevelop/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ciaodevelop/ciaodevelop.pl: -------------------------------------------------------------------------------- 1 | 2 | :- load_compilation_module(ciaopath). 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ciaopp/api/xtchecks_msg.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/benchmarks/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/benchmarks/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/benchmarks/assrt/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/benchmarks/call/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/benchmarks/new/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/benchmarks/new/on_method/bench.old: -------------------------------------------------------------------------------- 1 | 1 12.42525 2 | 5 _222386 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/class.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/class_error_reporting.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/class_itf.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/class_rt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/persistency/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/queens/nulqueen.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/queens/queen.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/queens/write_board.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/remote/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/sockets/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/examples/stack.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/library/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/class/virtual.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/clp.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/clpcompiler_q.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/clpq_attr.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/clpq_dump.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/clpq_meta.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/clpq_rt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/eval_q.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpq/solver_q.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpqr-common/TO-DO: -------------------------------------------------------------------------------- 1 | add functions min/2, max/2. 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpqr-common/examples/small_incomplete_not_working/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/clpcompiler_r.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/clpr_attr.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/clpr_dump.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/clpr_meta.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/clpr_rt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/eval_r.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/clpr/solver_r.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/connections/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/connections/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/counters.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/davinci.old/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/davinci.old/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/dclp/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/dclp/and/syntax.pl: -------------------------------------------------------------------------------- 1 | :- op(200, yfx, [(@)]). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/dclp/or/nameserver/nameserver_db/nameserver/module_address_db_3.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/dclp/or/remote/manager_ini.pl: -------------------------------------------------------------------------------- 1 | n_of_workers(1) . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/dclp/or/remote_R/manager_ini.pl: -------------------------------------------------------------------------------- 1 | n_of_workers(1) . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/det_hook/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/examples/small_incomplete_not_working/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/expander/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/expander/mio: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/expander/mio.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/factsdb/dynamic/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/factsdb/static/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/factsdb/window/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/factsdb/window/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/fdtypes/NOCOMPILE: -------------------------------------------------------------------------------- 1 | Ask Bardo | Boris about this file 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/file_locks/in_development/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/fly/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/fuzzy/development/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/fuzzy/development/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/fuzzy/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/hlc/INDEV/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/hlc/INDEV/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/hlc/examples/Makefile: -------------------------------------------------------------------------------- 1 | distclean: 2 | rm -f examples_hlc 3 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/id/id.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/id/id.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/indexer/ALTERNATIVE/.NOCOMPILE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/indexer/ALTERNATIVE/.NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/indexer/KEEP/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/indexer/KEEP/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/indexer/hash.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/indexer/low.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/javall/examples/java2pl/non-dist/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/javall/examples/pl2java/NotWorking/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/javall/javadoc/package-list: -------------------------------------------------------------------------------- 1 | CiaoJava 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/javaobs/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/javaobs/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/librowser/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/make/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/neg/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/nf.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/CiaoDE/ciao/library/nf.pl -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/objects/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/objects/objects_error_reporting.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/ontologies/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/p2p/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/p2p/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/p2p/test/test1/port1.pl: -------------------------------------------------------------------------------- 1 | port1(57792). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/p2p/test/test1/port2.pl: -------------------------------------------------------------------------------- 1 | port2(57793). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/p2p/test/test2/port.pl: -------------------------------------------------------------------------------- 1 | port(57792). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/parse_spec.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb/doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/examples/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/examples/active_modules/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/examples/not_working/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/odbc/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/odbc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/old/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/old/misc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/old/pl2sql_modifications/.NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/old/postgreSQLaccess/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/old/postgreSQLaccess/tests/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql/old/tests/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql_op/NOCOMPILE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_mysql_op/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/gdbi/InfoForDevelopers/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/gdbi/readmes/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/gdbi/src/UnixClient/config.txt: -------------------------------------------------------------------------------- 1 | r2d5 2020 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/gdbi/version/GlobalPatch: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_odbc/gdbi/version/GlobalVersion: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/persdb_sql_common/pl2sqlinsert.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pillow/dist/.nodistribute: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pillow/dist/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pillow/dist/icon_address.pl: -------------------------------------------------------------------------------- 1 | icon_base_address('/images/'). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pillow/icon_address.pl: -------------------------------------------------------------------------------- 1 | icon_base_address('/~asap/images/'). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pillow/pillow_aux.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pillow/xmlterm.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/platforms/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/platforms/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/prompt.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pwamc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/pwamc/module.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/remote/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/remote/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/remote/bak/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/remote/bak/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/remote/benchmark/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/remote/ops.pl: -------------------------------------------------------------------------------- 1 | :- op(950, yfx, [(@)]). 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/soap/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/soap/example/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/sockets/sockets_c.asr: -------------------------------------------------------------------------------- 1 | v('1.3.2') . 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/Vtcl/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/Vtcl/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/Vtcl/RUC_NewVersion/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples/interface/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples/interface/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples/pers/user/phb_2.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples_with_problems/NOCOMPILE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples_with_problems/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples_with_problems/NOT_WORKING/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples_with_problems/class/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples_with_problems/widget_class/Doc/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk/examples_with_problems/widget_class/bind_class.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/CiaoDE/ciao/library/tcltk_obj/Back/NODISTRIBUTE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/asap-online-demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/asap-online-demo.css -------------------------------------------------------------------------------- /www/asap-online-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/asap-online-demo.js -------------------------------------------------------------------------------- /www/benchmarks/advisor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/advisor.pl -------------------------------------------------------------------------------- /www/benchmarks/append.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/append.pl -------------------------------------------------------------------------------- /www/benchmarks/ctl_trace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/ctl_trace.pl -------------------------------------------------------------------------------- /www/benchmarks/depth.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/depth.pl -------------------------------------------------------------------------------- /www/benchmarks/even_odd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/even_odd.pl -------------------------------------------------------------------------------- /www/benchmarks/groundunify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/groundunify.pl -------------------------------------------------------------------------------- /www/benchmarks/liftsolve.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/liftsolve.pl -------------------------------------------------------------------------------- /www/benchmarks/map.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/map.pl -------------------------------------------------------------------------------- /www/benchmarks/match.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/match.pl -------------------------------------------------------------------------------- /www/benchmarks/matrix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/matrix.pl -------------------------------------------------------------------------------- /www/benchmarks/maxlen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/maxlen.pl -------------------------------------------------------------------------------- /www/benchmarks/power.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/power.pl -------------------------------------------------------------------------------- /www/benchmarks/prop_int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/prop_int.pl -------------------------------------------------------------------------------- /www/benchmarks/relative.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/relative.pl -------------------------------------------------------------------------------- /www/benchmarks/reverse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/reverse.pl -------------------------------------------------------------------------------- /www/benchmarks/rotateprune.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/rotateprune.pl -------------------------------------------------------------------------------- /www/benchmarks/transpose.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/benchmarks/transpose.pl -------------------------------------------------------------------------------- /www/bin/ciaoppcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/bin/ciaoppcl -------------------------------------------------------------------------------- /www/bin/convex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/bin/convex -------------------------------------------------------------------------------- /www/bin/dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/bin/dm -------------------------------------------------------------------------------- /www/bin/mecce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/bin/mecce -------------------------------------------------------------------------------- /www/doc/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/about.php -------------------------------------------------------------------------------- /www/doc/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/help.php -------------------------------------------------------------------------------- /www/doc/images/actions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/images/actions.jpg -------------------------------------------------------------------------------- /www/doc/images/empty.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/images/empty.tiff -------------------------------------------------------------------------------- /www/doc/images/goal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/images/goal.jpg -------------------------------------------------------------------------------- /www/doc/images/plugins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/images/plugins.jpg -------------------------------------------------------------------------------- /www/doc/images/upload.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/images/upload.graffle -------------------------------------------------------------------------------- /www/doc/images/upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/images/upload.jpg -------------------------------------------------------------------------------- /www/doc/plug-ins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/plug-ins.php -------------------------------------------------------------------------------- /www/doc/questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/questions.html -------------------------------------------------------------------------------- /www/doc/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/doc/svg.html -------------------------------------------------------------------------------- /www/downloads/Linux/ecce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/downloads/Linux/ecce -------------------------------------------------------------------------------- /www/downloads/Mac/ecce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/downloads/Mac/ecce -------------------------------------------------------------------------------- /www/downloads/Mac/ecce.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/downloads/Mac/ecce.dmg -------------------------------------------------------------------------------- /www/downloads/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/downloads/Makefile -------------------------------------------------------------------------------- /www/downloads/Windows/ecce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/downloads/Windows/ecce -------------------------------------------------------------------------------- /www/ecce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/ecce.jpg -------------------------------------------------------------------------------- /www/ecce_bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/ecce_bar.jpg -------------------------------------------------------------------------------- /www/include/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/button.php -------------------------------------------------------------------------------- /www/include/cgi_param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/cgi_param.php -------------------------------------------------------------------------------- /www/include/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/config.php -------------------------------------------------------------------------------- /www/include/debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/debug.php -------------------------------------------------------------------------------- /www/include/gui_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/gui_callback.php -------------------------------------------------------------------------------- /www/include/gui_def.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/gui_def.php -------------------------------------------------------------------------------- /www/include/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/init.php -------------------------------------------------------------------------------- /www/include/init_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/init_debug.php -------------------------------------------------------------------------------- /www/include/tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/include/tpl.php -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/index.php -------------------------------------------------------------------------------- /www/index_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/index_debug.php -------------------------------------------------------------------------------- /www/mecce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/mecce.css -------------------------------------------------------------------------------- /www/mecce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/mecce.js -------------------------------------------------------------------------------- /www/pl_out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/pl_out.php -------------------------------------------------------------------------------- /www/runtime_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leuschel/ecce/HEAD/www/runtime_error.php --------------------------------------------------------------------------------