├── .dir-locals.el ├── .github ├── dependabot.yml └── workflows │ ├── emacs.yml │ ├── main.yml │ ├── ocaml.yml │ └── vscode.yml ├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.md ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── RELEASE.md ├── TODO.md ├── assets └── lambdapi.ico ├── doc ├── Makefile ├── README.md ├── about.rst ├── commands.rst ├── conf.py ├── dedukti.rst ├── dtrees.rst ├── emacs.rst ├── equality.rst ├── getting_started.rst ├── index.rst ├── lambdapi.bnf ├── latex.rst ├── module.rst ├── options.rst ├── profiling.rst ├── proof.rst ├── queries.rst ├── query_language.rst ├── structure.rst ├── tacticals.rst ├── tactics.rst ├── terms.rst ├── testing.rst ├── ui.rst ├── vim.rst └── vscode.rst ├── dune ├── dune-project ├── editors ├── emacs │ ├── .gitignore │ ├── CHANGES.md │ ├── Makefile │ ├── README.md │ ├── THANKS.md │ ├── TODO │ ├── clean.sh │ ├── installAndLaunch.sh │ ├── lambdapi-abbrev.el │ ├── lambdapi-capf.el │ ├── lambdapi-input.el │ ├── lambdapi-layout.el │ ├── lambdapi-mode.el │ ├── lambdapi-proofs.el │ ├── lambdapi-smie.el │ ├── lambdapi-vars.el │ └── test.sh ├── vim │ ├── dune │ ├── ftdetect │ │ ├── dedukti.vim │ │ └── lambdapi.vim │ └── syntax │ │ ├── dedukti.vim │ │ └── lambdapi.vim └── vscode │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGES.md │ ├── CONTRIBUTING.md │ ├── INSTALL.md │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── RELEASE.md │ ├── THANKS.md │ ├── TODO │ ├── lp.configuration.json │ ├── media │ └── styles.css │ ├── package-lock.json │ ├── package.json │ ├── snippets │ └── unicode.json │ ├── src │ ├── browser.ts │ ├── client.ts │ ├── config.ts │ └── tsconfig.json │ ├── syntaxes │ └── lp.tmLanguage.json │ ├── tsconfig-base.json │ └── tsconfig.json ├── lambdapi.opam ├── libraries ├── README.md ├── coq.v ├── dk2coq.mk ├── dk2rawcoq.sh ├── dk2sttcoq.sh ├── dklib.sh ├── encoding.lp ├── focalide.sh ├── holide.sh ├── iprover.sh ├── mapping.lp ├── matita.awk ├── matita.sh ├── matita │ └── LPSearch.lp ├── patch-filenames.sh ├── renaming.lp ├── sttfa.v ├── verine.sh └── zenon_modulo.sh ├── misc ├── .gitignore ├── deps.ml ├── example.tex ├── gen_version.ml ├── generate_tests.ml ├── git_hook_helper.sh ├── lambdapi.tex ├── rec_to_lp │ ├── Makefile │ ├── README.md │ ├── rec_hs_to_lp.awk │ ├── rec_time.py │ └── tests │ │ ├── ex.hs │ │ └── langton6.hs └── sanity_check.sh ├── src ├── .dir-locals.el ├── cli │ ├── config.ml │ ├── dune │ ├── init.ml │ ├── install.ml │ ├── lambdapi.ico │ └── lambdapi.ml ├── common │ ├── console.ml │ ├── debug.ml │ ├── dune │ ├── error.ml │ ├── escape.ml │ ├── library.ml │ ├── logger.ml │ ├── logger.mli │ ├── name.ml │ ├── path.ml │ └── pos.ml ├── core │ ├── builtin.ml │ ├── coercion.ml │ ├── coercion.mli │ ├── ctxt.ml │ ├── dune │ ├── env.ml │ ├── eval.ml │ ├── eval.mli │ ├── infer.ml │ ├── infer.mli │ ├── inverse.ml │ ├── libMeta.ml │ ├── libTerm.ml │ ├── print.ml │ ├── sig_state.ml │ ├── sign.ml │ ├── term.ml │ ├── term.mli │ ├── tree.ml │ ├── tree_type.ml │ ├── unif.ml │ ├── unif.mli │ └── unif_rule.ml ├── export │ ├── coq.ml │ ├── dk.ml │ ├── dune │ ├── hrs.ml │ ├── rawdk.ml │ └── xtc.ml ├── handle │ ├── command.ml │ ├── command.mli │ ├── compile.ml │ ├── compile.mli │ ├── dune │ ├── fol.ml │ ├── goal.ml │ ├── inductive.ml │ ├── proof.ml │ ├── query.ml │ ├── query.mli │ ├── rewrite.ml │ ├── tactic.ml │ ├── why3_tactic.ml │ └── why3_tactic.mli ├── lplib │ ├── array.ml │ ├── base.ml │ ├── bytes.ml │ ├── color.ml │ ├── dune │ ├── extra.ml │ ├── filename.ml │ ├── list.ml │ ├── option.ml │ ├── range.ml │ ├── range.mli │ ├── rangeMap.ml │ ├── rangeMap.mli │ ├── rangeMap_intf.ml │ ├── range_intf.ml │ ├── realpath.c │ ├── string.ml │ └── uchar.ml ├── lsp │ ├── CHANGES.md │ ├── README.md │ ├── dune │ ├── lp_doc.ml │ ├── lp_lsp.ml │ ├── lp_lsp.mli │ ├── lsp_base.ml │ ├── lsp_base.mli │ └── lsp_io.ml ├── parsing │ ├── dkBasic.ml │ ├── dkLexer.mll │ ├── dkParser.mly │ ├── dkRule.ml │ ├── dkTokens.ml │ ├── dune │ ├── lpLexer.ml │ ├── lpParser.ml │ ├── package.ml │ ├── parser.ml │ ├── pratt.ml │ ├── pretty.ml │ ├── scope.ml │ ├── scope.mli │ └── syntax.ml ├── pure │ ├── dune │ ├── pure.ml │ ├── pure.mli │ └── tests │ │ ├── foo.lp │ │ └── lambdapi.pkg └── tool │ ├── dune │ ├── external.ml │ ├── indexing.ml │ ├── indexing.mli │ ├── lambdapi.ico │ ├── lcr.ml │ ├── sr.ml │ ├── sr.mli │ ├── tree_graphviz.ml │ ├── websearch.eml.ml │ └── websearch.mli └── tests ├── .gitignore ├── KO ├── 1041.lp ├── 1103.lp ├── 1103b.lp ├── 1217.lp ├── 246.lp ├── 246b.lp ├── 262_localuse.lp ├── 262_prv_in_rhs.lp ├── 262_prv_lhs_head.lp ├── 262_prvdef_in_rhs.lp ├── 262_pub_prv_defn.lp ├── 262_pub_prv_type.lp ├── 262_pub_prvlhs_rule.lp ├── 262_pub_prvrhs_rule.lp ├── 272.lp ├── 378.lp ├── 536.lp ├── 59.lp ├── 655.lp ├── 655b.lp ├── 656.lp ├── 71.dk ├── 713.lp ├── 845.lp ├── 912.lp ├── 913.lp ├── 922.lp ├── C1_fail.lp ├── D3.lp ├── anonymous.lp ├── bug2.dk ├── bug3.dk ├── church.dk ├── circular_a.dk ├── circular_b.dk ├── circular_c.dk ├── context_var_not_occuring.dk ├── def.dk ├── double_decl.dk ├── francois.dk ├── incompatible.lp ├── inductive_type_KO.lp ├── infix.lp ├── invalid_pat.dk ├── lexing_id.dk ├── missing_brackets.lp ├── nomodule.dk ├── notinj.dk ├── notvarinenv.lp ├── parsing_eof.dk ├── pat_rhs.lp ├── remove.lp ├── req_without_root_path.lp ├── require_escape1.lp ├── require_escape2.lp ├── rule_var.dk ├── scoping_ext.dk ├── self_require_escape.lp ├── typing_abstraction.dk ├── typing_omega.dk ├── typing_pi.dk ├── typing_sort.dk ├── unclosed_comment.dk ├── unclosed_comment2.dk ├── unclosed_comment3.dk ├── unsound.dk └── vectDependant.dk ├── OK ├── 1001.lp ├── 1006.lp ├── 1026.lp ├── 1033.lp ├── 1035.lp ├── 1101.lp ├── 1120.lp ├── 1141.lp ├── 1151.lp ├── 1190a.lp ├── 1190b.lp ├── 1190c.lp ├── 1217.lp ├── 1247.lp ├── 1313.lp ├── 215.lp ├── 225.lp ├── 244.lp ├── 245.lp ├── 245b.lp ├── 262_legacy_parsing.dk ├── 262_pair_ex_1.lp ├── 262_pair_ex_2.lp ├── 262_parsing.lp ├── 262_private_in_lhs.lp ├── 273.lp ├── 292.lp ├── 298_lp.lp ├── 301.lp ├── 303.lp ├── 328.lp ├── 330.lp ├── 330b.lp ├── 341.lp ├── 359.lp ├── 430.lp ├── 547.lp ├── 55.dk ├── 565.lp ├── 573-2.lp ├── 573.lp ├── 579_long_no_duplicate.lp ├── 579_or_elim_long.lp ├── 584_c_slow.lp ├── 595_and_elim.lp ├── 61.dk ├── 62.dk ├── 621c.lp ├── 649_fo_27.lp ├── 65.dk ├── 650.lp ├── 655.lp ├── 655b.lp ├── 665.lp ├── 679.lp ├── 683.lp ├── 693.lp ├── 693_assume.lp ├── 698_abst_impl.lp ├── 706.lp ├── 72.dk ├── 725.lp ├── 729.lp ├── 767.lp ├── 77.dk ├── 813.lp ├── 830.lp ├── 861.lp ├── 878.lp ├── 904.lp ├── 922.lp ├── 989.lp ├── 991.lp ├── A.lp ├── B1.lp ├── B2.lp ├── Bool.lp ├── C1.lp ├── C2.lp ├── C3.lp ├── Classic.lp ├── Comp.lp ├── Epsilon.lp ├── Eq.lp ├── Escaped.lp ├── FO.dk ├── FOL.lp ├── HOL.lp ├── Impred.lp ├── List.lp ├── Nat.lp ├── Option.lp ├── Pos.lp ├── Prop.lp ├── PropExt.lp ├── Set.lp ├── String.lp ├── Tactic.lp ├── Z.lp ├── a b │ └── escape file.lp ├── abstractions.lp ├── ac.lp ├── admit.lp ├── andPoly.dk ├── append.lp ├── append_legacy.dk ├── apply.lp ├── arity_diff.lp ├── arity_var.lp ├── basic.dk ├── big_compute.dk ├── boolean.lp ├── bug.dk ├── bug0.dk ├── builtin_succ_zero.lp ├── change.lp ├── check.dk ├── church.dk ├── cic.dk ├── coc.dk ├── coercions.lp ├── comment_in_qid.lp ├── compute.lp ├── compute_legacy.dk ├── cp0.lp ├── cp1.lp ├── cp2.lp ├── cp3.lp ├── cr_qu.lp ├── cupicef.dk ├── decimal.lp ├── declared.lp ├── doc.lp ├── domainfree.dk ├── dotpat.dk ├── dummy1.dk ├── empty.lp ├── emptySet.dk ├── escape_path.lp ├── eta_equality.lp ├── file.with.dot.lp ├── firstOrder.dk ├── firstOrder_v2.dk ├── foo.lp ├── for_inductive.lp ├── freevars-constraints.lp ├── gaspard.dk ├── generalize.lp ├── group.lp ├── half.dk ├── have.lp ├── ho_bug1.dk ├── ho_bug2.dk ├── hott.dk ├── identifiers.lp ├── implicitArgs1.lp ├── implicitArgs2.lp ├── implicitArgs3.lp ├── implicitArgs4.lp ├── indind.lp ├── indrec.lp ├── inductive.lp ├── infer.lp ├── infix.lp ├── inj.dk ├── let.lp ├── logic.lp ├── lpparse.lp ├── lpparse2.lp ├── max-suc-alg.lp ├── michael.lp ├── miller.dk ├── miller2.dk ├── mini.dk ├── nat_id1.lp ├── nat_id2.lp ├── natproofs.lp ├── natural.lp ├── nested_comment.dk ├── nested_comment_lp.lp ├── nonLeftLinear.dk ├── nonLeftLinear2.lp ├── nonlin.dk ├── not-eager.lp ├── opaque.lp ├── parametricCoercions.lp ├── patt.lp ├── patterns.lp ├── perf_rw_engine.lp ├── perf_rw_fib-nonRightLin.lp ├── perf_rw_nl.lp ├── plus.dk ├── plus_ac.lp ├── postfix.lp ├── power-fact.lp ├── prefix.lp ├── print_notation_numbers.lp ├── private.lp ├── quant.lp ├── quant2.lp ├── raphael.dk ├── remove.lp ├── req.file.with.dot.lp ├── require_nondkmident.lp ├── require_symbol.lp ├── rewrite0.lp ├── rewrite1.lp ├── rewrite2.lp ├── rewrite3.lp ├── rule_order.lp ├── simp_beta.lp ├── strictly_positive_1.lp ├── strictly_positive_2.lp ├── subst.dk ├── surjective.dk ├── sym_decl.lp ├── symbol.lp ├── tail.lp ├── tautologies.lp ├── test.dk ├── tptp.dk ├── triangular.lp ├── try.lp ├── tuto.dk ├── tutorial.lp ├── type.lp ├── type_rewrite.dk ├── unif_hint.lp ├── uninst_meta_in_rhs.dk ├── varmatch.lp ├── vectDependant.dk ├── why3.lp ├── wildcards.dk ├── xor.lp └── zero.lp ├── dtrees.sh ├── dune ├── export_dk.sh ├── export_lp.sh ├── export_raw_dk.sh ├── kernel.ml ├── lambdapi.pkg ├── ok_ko.ml ├── purity.ml ├── regressions ├── dtrees.expected ├── dtrees.ml ├── dune ├── hrs.expected ├── hrs.ml ├── xtc.expected └── xtc.ml ├── rewriting.ml ├── test_lib.sh └── test_load.sh /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/emacs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.github/workflows/emacs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/ocaml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.github/workflows/ocaml.yml -------------------------------------------------------------------------------- /.github/workflows/vscode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.github/workflows/vscode.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/RELEASE.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/TODO.md -------------------------------------------------------------------------------- /assets/lambdapi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/assets/lambdapi.ico -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/about.rst -------------------------------------------------------------------------------- /doc/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/commands.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/dedukti.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/dedukti.rst -------------------------------------------------------------------------------- /doc/dtrees.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/dtrees.rst -------------------------------------------------------------------------------- /doc/emacs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/emacs.rst -------------------------------------------------------------------------------- /doc/equality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/equality.rst -------------------------------------------------------------------------------- /doc/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/getting_started.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/lambdapi.bnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/lambdapi.bnf -------------------------------------------------------------------------------- /doc/latex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/latex.rst -------------------------------------------------------------------------------- /doc/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/module.rst -------------------------------------------------------------------------------- /doc/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/options.rst -------------------------------------------------------------------------------- /doc/profiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/profiling.rst -------------------------------------------------------------------------------- /doc/proof.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/proof.rst -------------------------------------------------------------------------------- /doc/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/queries.rst -------------------------------------------------------------------------------- /doc/query_language.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/query_language.rst -------------------------------------------------------------------------------- /doc/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/structure.rst -------------------------------------------------------------------------------- /doc/tacticals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/tacticals.rst -------------------------------------------------------------------------------- /doc/tactics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/tactics.rst -------------------------------------------------------------------------------- /doc/terms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/terms.rst -------------------------------------------------------------------------------- /doc/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/testing.rst -------------------------------------------------------------------------------- /doc/ui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/ui.rst -------------------------------------------------------------------------------- /doc/vim.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/vim.rst -------------------------------------------------------------------------------- /doc/vscode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/doc/vscode.rst -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/dune -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/dune-project -------------------------------------------------------------------------------- /editors/emacs/.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | *.tar 3 | -------------------------------------------------------------------------------- /editors/emacs/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/CHANGES.md -------------------------------------------------------------------------------- /editors/emacs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/Makefile -------------------------------------------------------------------------------- /editors/emacs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/README.md -------------------------------------------------------------------------------- /editors/emacs/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/THANKS.md -------------------------------------------------------------------------------- /editors/emacs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/TODO -------------------------------------------------------------------------------- /editors/emacs/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/clean.sh -------------------------------------------------------------------------------- /editors/emacs/installAndLaunch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/installAndLaunch.sh -------------------------------------------------------------------------------- /editors/emacs/lambdapi-abbrev.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-abbrev.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-capf.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-capf.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-input.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-input.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-layout.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-layout.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-mode.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-proofs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-proofs.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-smie.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-smie.el -------------------------------------------------------------------------------- /editors/emacs/lambdapi-vars.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/lambdapi-vars.el -------------------------------------------------------------------------------- /editors/emacs/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/emacs/test.sh -------------------------------------------------------------------------------- /editors/vim/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vim/dune -------------------------------------------------------------------------------- /editors/vim/ftdetect/dedukti.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vim/ftdetect/dedukti.vim -------------------------------------------------------------------------------- /editors/vim/ftdetect/lambdapi.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vim/ftdetect/lambdapi.vim -------------------------------------------------------------------------------- /editors/vim/syntax/dedukti.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vim/syntax/dedukti.vim -------------------------------------------------------------------------------- /editors/vim/syntax/lambdapi.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vim/syntax/lambdapi.vim -------------------------------------------------------------------------------- /editors/vscode/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /editors/vscode/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/.vscode/extensions.json -------------------------------------------------------------------------------- /editors/vscode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/.vscode/launch.json -------------------------------------------------------------------------------- /editors/vscode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/.vscode/settings.json -------------------------------------------------------------------------------- /editors/vscode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/.vscode/tasks.json -------------------------------------------------------------------------------- /editors/vscode/.vscodeignore: -------------------------------------------------------------------------------- 1 | **/*.ts 2 | **/tsconfig.json 3 | -------------------------------------------------------------------------------- /editors/vscode/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/CHANGES.md -------------------------------------------------------------------------------- /editors/vscode/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/CONTRIBUTING.md -------------------------------------------------------------------------------- /editors/vscode/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/INSTALL.md -------------------------------------------------------------------------------- /editors/vscode/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/LICENSE.txt -------------------------------------------------------------------------------- /editors/vscode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/Makefile -------------------------------------------------------------------------------- /editors/vscode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/README.md -------------------------------------------------------------------------------- /editors/vscode/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/RELEASE.md -------------------------------------------------------------------------------- /editors/vscode/THANKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/THANKS.md -------------------------------------------------------------------------------- /editors/vscode/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/TODO -------------------------------------------------------------------------------- /editors/vscode/lp.configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/lp.configuration.json -------------------------------------------------------------------------------- /editors/vscode/media/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/media/styles.css -------------------------------------------------------------------------------- /editors/vscode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/package-lock.json -------------------------------------------------------------------------------- /editors/vscode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/package.json -------------------------------------------------------------------------------- /editors/vscode/snippets/unicode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/snippets/unicode.json -------------------------------------------------------------------------------- /editors/vscode/src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/src/browser.ts -------------------------------------------------------------------------------- /editors/vscode/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/src/client.ts -------------------------------------------------------------------------------- /editors/vscode/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/src/config.ts -------------------------------------------------------------------------------- /editors/vscode/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/src/tsconfig.json -------------------------------------------------------------------------------- /editors/vscode/syntaxes/lp.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/syntaxes/lp.tmLanguage.json -------------------------------------------------------------------------------- /editors/vscode/tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/tsconfig-base.json -------------------------------------------------------------------------------- /editors/vscode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/editors/vscode/tsconfig.json -------------------------------------------------------------------------------- /lambdapi.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/lambdapi.opam -------------------------------------------------------------------------------- /libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/README.md -------------------------------------------------------------------------------- /libraries/coq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/coq.v -------------------------------------------------------------------------------- /libraries/dk2coq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/dk2coq.mk -------------------------------------------------------------------------------- /libraries/dk2rawcoq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/dk2rawcoq.sh -------------------------------------------------------------------------------- /libraries/dk2sttcoq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/dk2sttcoq.sh -------------------------------------------------------------------------------- /libraries/dklib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/dklib.sh -------------------------------------------------------------------------------- /libraries/encoding.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/encoding.lp -------------------------------------------------------------------------------- /libraries/focalide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/focalide.sh -------------------------------------------------------------------------------- /libraries/holide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/holide.sh -------------------------------------------------------------------------------- /libraries/iprover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/iprover.sh -------------------------------------------------------------------------------- /libraries/mapping.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/mapping.lp -------------------------------------------------------------------------------- /libraries/matita.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/matita.awk -------------------------------------------------------------------------------- /libraries/matita.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/matita.sh -------------------------------------------------------------------------------- /libraries/matita/LPSearch.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/matita/LPSearch.lp -------------------------------------------------------------------------------- /libraries/patch-filenames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/patch-filenames.sh -------------------------------------------------------------------------------- /libraries/renaming.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/renaming.lp -------------------------------------------------------------------------------- /libraries/sttfa.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/sttfa.v -------------------------------------------------------------------------------- /libraries/verine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/verine.sh -------------------------------------------------------------------------------- /libraries/zenon_modulo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/libraries/zenon_modulo.sh -------------------------------------------------------------------------------- /misc/.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | example.pdf 4 | -------------------------------------------------------------------------------- /misc/deps.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/deps.ml -------------------------------------------------------------------------------- /misc/example.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/example.tex -------------------------------------------------------------------------------- /misc/gen_version.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/gen_version.ml -------------------------------------------------------------------------------- /misc/generate_tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/generate_tests.ml -------------------------------------------------------------------------------- /misc/git_hook_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/git_hook_helper.sh -------------------------------------------------------------------------------- /misc/lambdapi.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/lambdapi.tex -------------------------------------------------------------------------------- /misc/rec_to_lp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/rec_to_lp/Makefile -------------------------------------------------------------------------------- /misc/rec_to_lp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/rec_to_lp/README.md -------------------------------------------------------------------------------- /misc/rec_to_lp/rec_hs_to_lp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/rec_to_lp/rec_hs_to_lp.awk -------------------------------------------------------------------------------- /misc/rec_to_lp/rec_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/rec_to_lp/rec_time.py -------------------------------------------------------------------------------- /misc/rec_to_lp/tests/ex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/rec_to_lp/tests/ex.hs -------------------------------------------------------------------------------- /misc/rec_to_lp/tests/langton6.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/rec_to_lp/tests/langton6.hs -------------------------------------------------------------------------------- /misc/sanity_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/misc/sanity_check.sh -------------------------------------------------------------------------------- /src/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/.dir-locals.el -------------------------------------------------------------------------------- /src/cli/config.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/cli/config.ml -------------------------------------------------------------------------------- /src/cli/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/cli/dune -------------------------------------------------------------------------------- /src/cli/init.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/cli/init.ml -------------------------------------------------------------------------------- /src/cli/install.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/cli/install.ml -------------------------------------------------------------------------------- /src/cli/lambdapi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/cli/lambdapi.ico -------------------------------------------------------------------------------- /src/cli/lambdapi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/cli/lambdapi.ml -------------------------------------------------------------------------------- /src/common/console.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/console.ml -------------------------------------------------------------------------------- /src/common/debug.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/debug.ml -------------------------------------------------------------------------------- /src/common/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/dune -------------------------------------------------------------------------------- /src/common/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/error.ml -------------------------------------------------------------------------------- /src/common/escape.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/escape.ml -------------------------------------------------------------------------------- /src/common/library.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/library.ml -------------------------------------------------------------------------------- /src/common/logger.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/logger.ml -------------------------------------------------------------------------------- /src/common/logger.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/logger.mli -------------------------------------------------------------------------------- /src/common/name.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/name.ml -------------------------------------------------------------------------------- /src/common/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/path.ml -------------------------------------------------------------------------------- /src/common/pos.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/common/pos.ml -------------------------------------------------------------------------------- /src/core/builtin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/builtin.ml -------------------------------------------------------------------------------- /src/core/coercion.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/coercion.ml -------------------------------------------------------------------------------- /src/core/coercion.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/coercion.mli -------------------------------------------------------------------------------- /src/core/ctxt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/ctxt.ml -------------------------------------------------------------------------------- /src/core/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/dune -------------------------------------------------------------------------------- /src/core/env.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/env.ml -------------------------------------------------------------------------------- /src/core/eval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/eval.ml -------------------------------------------------------------------------------- /src/core/eval.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/eval.mli -------------------------------------------------------------------------------- /src/core/infer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/infer.ml -------------------------------------------------------------------------------- /src/core/infer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/infer.mli -------------------------------------------------------------------------------- /src/core/inverse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/inverse.ml -------------------------------------------------------------------------------- /src/core/libMeta.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/libMeta.ml -------------------------------------------------------------------------------- /src/core/libTerm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/libTerm.ml -------------------------------------------------------------------------------- /src/core/print.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/print.ml -------------------------------------------------------------------------------- /src/core/sig_state.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/sig_state.ml -------------------------------------------------------------------------------- /src/core/sign.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/sign.ml -------------------------------------------------------------------------------- /src/core/term.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/term.ml -------------------------------------------------------------------------------- /src/core/term.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/term.mli -------------------------------------------------------------------------------- /src/core/tree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/tree.ml -------------------------------------------------------------------------------- /src/core/tree_type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/tree_type.ml -------------------------------------------------------------------------------- /src/core/unif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/unif.ml -------------------------------------------------------------------------------- /src/core/unif.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/unif.mli -------------------------------------------------------------------------------- /src/core/unif_rule.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/core/unif_rule.ml -------------------------------------------------------------------------------- /src/export/coq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/export/coq.ml -------------------------------------------------------------------------------- /src/export/dk.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/export/dk.ml -------------------------------------------------------------------------------- /src/export/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/export/dune -------------------------------------------------------------------------------- /src/export/hrs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/export/hrs.ml -------------------------------------------------------------------------------- /src/export/rawdk.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/export/rawdk.ml -------------------------------------------------------------------------------- /src/export/xtc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/export/xtc.ml -------------------------------------------------------------------------------- /src/handle/command.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/command.ml -------------------------------------------------------------------------------- /src/handle/command.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/command.mli -------------------------------------------------------------------------------- /src/handle/compile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/compile.ml -------------------------------------------------------------------------------- /src/handle/compile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/compile.mli -------------------------------------------------------------------------------- /src/handle/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/dune -------------------------------------------------------------------------------- /src/handle/fol.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/fol.ml -------------------------------------------------------------------------------- /src/handle/goal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/goal.ml -------------------------------------------------------------------------------- /src/handle/inductive.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/inductive.ml -------------------------------------------------------------------------------- /src/handle/proof.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/proof.ml -------------------------------------------------------------------------------- /src/handle/query.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/query.ml -------------------------------------------------------------------------------- /src/handle/query.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/query.mli -------------------------------------------------------------------------------- /src/handle/rewrite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/rewrite.ml -------------------------------------------------------------------------------- /src/handle/tactic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/tactic.ml -------------------------------------------------------------------------------- /src/handle/why3_tactic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/why3_tactic.ml -------------------------------------------------------------------------------- /src/handle/why3_tactic.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/handle/why3_tactic.mli -------------------------------------------------------------------------------- /src/lplib/array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/array.ml -------------------------------------------------------------------------------- /src/lplib/base.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/base.ml -------------------------------------------------------------------------------- /src/lplib/bytes.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/bytes.ml -------------------------------------------------------------------------------- /src/lplib/color.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/color.ml -------------------------------------------------------------------------------- /src/lplib/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/dune -------------------------------------------------------------------------------- /src/lplib/extra.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/extra.ml -------------------------------------------------------------------------------- /src/lplib/filename.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/filename.ml -------------------------------------------------------------------------------- /src/lplib/list.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/list.ml -------------------------------------------------------------------------------- /src/lplib/option.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/option.ml -------------------------------------------------------------------------------- /src/lplib/range.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/range.ml -------------------------------------------------------------------------------- /src/lplib/range.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/range.mli -------------------------------------------------------------------------------- /src/lplib/rangeMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/rangeMap.ml -------------------------------------------------------------------------------- /src/lplib/rangeMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/rangeMap.mli -------------------------------------------------------------------------------- /src/lplib/rangeMap_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/rangeMap_intf.ml -------------------------------------------------------------------------------- /src/lplib/range_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/range_intf.ml -------------------------------------------------------------------------------- /src/lplib/realpath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/realpath.c -------------------------------------------------------------------------------- /src/lplib/string.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/string.ml -------------------------------------------------------------------------------- /src/lplib/uchar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lplib/uchar.ml -------------------------------------------------------------------------------- /src/lsp/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/CHANGES.md -------------------------------------------------------------------------------- /src/lsp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/README.md -------------------------------------------------------------------------------- /src/lsp/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/dune -------------------------------------------------------------------------------- /src/lsp/lp_doc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/lp_doc.ml -------------------------------------------------------------------------------- /src/lsp/lp_lsp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/lp_lsp.ml -------------------------------------------------------------------------------- /src/lsp/lp_lsp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/lp_lsp.mli -------------------------------------------------------------------------------- /src/lsp/lsp_base.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/lsp_base.ml -------------------------------------------------------------------------------- /src/lsp/lsp_base.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/lsp_base.mli -------------------------------------------------------------------------------- /src/lsp/lsp_io.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/lsp/lsp_io.ml -------------------------------------------------------------------------------- /src/parsing/dkBasic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/dkBasic.ml -------------------------------------------------------------------------------- /src/parsing/dkLexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/dkLexer.mll -------------------------------------------------------------------------------- /src/parsing/dkParser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/dkParser.mly -------------------------------------------------------------------------------- /src/parsing/dkRule.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/dkRule.ml -------------------------------------------------------------------------------- /src/parsing/dkTokens.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/dkTokens.ml -------------------------------------------------------------------------------- /src/parsing/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/dune -------------------------------------------------------------------------------- /src/parsing/lpLexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/lpLexer.ml -------------------------------------------------------------------------------- /src/parsing/lpParser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/lpParser.ml -------------------------------------------------------------------------------- /src/parsing/package.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/package.ml -------------------------------------------------------------------------------- /src/parsing/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/parser.ml -------------------------------------------------------------------------------- /src/parsing/pratt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/pratt.ml -------------------------------------------------------------------------------- /src/parsing/pretty.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/pretty.ml -------------------------------------------------------------------------------- /src/parsing/scope.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/scope.ml -------------------------------------------------------------------------------- /src/parsing/scope.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/scope.mli -------------------------------------------------------------------------------- /src/parsing/syntax.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/parsing/syntax.ml -------------------------------------------------------------------------------- /src/pure/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/pure/dune -------------------------------------------------------------------------------- /src/pure/pure.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/pure/pure.ml -------------------------------------------------------------------------------- /src/pure/pure.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/pure/pure.mli -------------------------------------------------------------------------------- /src/pure/tests/foo.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/pure/tests/foo.lp -------------------------------------------------------------------------------- /src/pure/tests/lambdapi.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/pure/tests/lambdapi.pkg -------------------------------------------------------------------------------- /src/tool/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/dune -------------------------------------------------------------------------------- /src/tool/external.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/external.ml -------------------------------------------------------------------------------- /src/tool/indexing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/indexing.ml -------------------------------------------------------------------------------- /src/tool/indexing.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/indexing.mli -------------------------------------------------------------------------------- /src/tool/lambdapi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/lambdapi.ico -------------------------------------------------------------------------------- /src/tool/lcr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/lcr.ml -------------------------------------------------------------------------------- /src/tool/sr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/sr.ml -------------------------------------------------------------------------------- /src/tool/sr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/sr.mli -------------------------------------------------------------------------------- /src/tool/tree_graphviz.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/tree_graphviz.ml -------------------------------------------------------------------------------- /src/tool/websearch.eml.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/websearch.eml.ml -------------------------------------------------------------------------------- /src/tool/websearch.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/src/tool/websearch.mli -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | .tmp 2 | -------------------------------------------------------------------------------- /tests/KO/1041.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/1041.lp -------------------------------------------------------------------------------- /tests/KO/1103.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/1103.lp -------------------------------------------------------------------------------- /tests/KO/1103b.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/1103b.lp -------------------------------------------------------------------------------- /tests/KO/1217.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/1217.lp -------------------------------------------------------------------------------- /tests/KO/246.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/246.lp -------------------------------------------------------------------------------- /tests/KO/246b.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/246b.lp -------------------------------------------------------------------------------- /tests/KO/262_localuse.lp: -------------------------------------------------------------------------------- 1 | require tests.OK.{|262_parsing|} as D; 2 | 3 | rule D.f $x ↪ $x; 4 | -------------------------------------------------------------------------------- /tests/KO/262_prv_in_rhs.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_prv_in_rhs.lp -------------------------------------------------------------------------------- /tests/KO/262_prv_lhs_head.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_prv_lhs_head.lp -------------------------------------------------------------------------------- /tests/KO/262_prvdef_in_rhs.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_prvdef_in_rhs.lp -------------------------------------------------------------------------------- /tests/KO/262_pub_prv_defn.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_pub_prv_defn.lp -------------------------------------------------------------------------------- /tests/KO/262_pub_prv_type.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_pub_prv_type.lp -------------------------------------------------------------------------------- /tests/KO/262_pub_prvlhs_rule.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_pub_prvlhs_rule.lp -------------------------------------------------------------------------------- /tests/KO/262_pub_prvrhs_rule.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/262_pub_prvrhs_rule.lp -------------------------------------------------------------------------------- /tests/KO/272.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/272.lp -------------------------------------------------------------------------------- /tests/KO/378.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/378.lp -------------------------------------------------------------------------------- /tests/KO/536.lp: -------------------------------------------------------------------------------- 1 | require /*tests.KO.*/bool; 2 | -------------------------------------------------------------------------------- /tests/KO/59.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/59.lp -------------------------------------------------------------------------------- /tests/KO/655.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/655.lp -------------------------------------------------------------------------------- /tests/KO/655b.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/655b.lp -------------------------------------------------------------------------------- /tests/KO/656.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/656.lp -------------------------------------------------------------------------------- /tests/KO/71.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/71.dk -------------------------------------------------------------------------------- /tests/KO/713.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/713.lp -------------------------------------------------------------------------------- /tests/KO/845.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/845.lp -------------------------------------------------------------------------------- /tests/KO/912.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/912.lp -------------------------------------------------------------------------------- /tests/KO/913.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/913.lp -------------------------------------------------------------------------------- /tests/KO/922.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/922.lp -------------------------------------------------------------------------------- /tests/KO/C1_fail.lp: -------------------------------------------------------------------------------- 1 | require tests.OK.B1; 2 | 3 | type A; 4 | -------------------------------------------------------------------------------- /tests/KO/D3.lp: -------------------------------------------------------------------------------- 1 | require open tests.OK.C3; 2 | 3 | type A; 4 | -------------------------------------------------------------------------------- /tests/KO/anonymous.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/anonymous.lp -------------------------------------------------------------------------------- /tests/KO/bug2.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/bug2.dk -------------------------------------------------------------------------------- /tests/KO/bug3.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/bug3.dk -------------------------------------------------------------------------------- /tests/KO/church.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/church.dk -------------------------------------------------------------------------------- /tests/KO/circular_a.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/circular_a.dk -------------------------------------------------------------------------------- /tests/KO/circular_b.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/circular_b.dk -------------------------------------------------------------------------------- /tests/KO/circular_c.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/circular_c.dk -------------------------------------------------------------------------------- /tests/KO/context_var_not_occuring.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/context_var_not_occuring.dk -------------------------------------------------------------------------------- /tests/KO/def.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/def.dk -------------------------------------------------------------------------------- /tests/KO/double_decl.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/double_decl.dk -------------------------------------------------------------------------------- /tests/KO/francois.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/francois.dk -------------------------------------------------------------------------------- /tests/KO/incompatible.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/incompatible.lp -------------------------------------------------------------------------------- /tests/KO/inductive_type_KO.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/inductive_type_KO.lp -------------------------------------------------------------------------------- /tests/KO/infix.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/infix.lp -------------------------------------------------------------------------------- /tests/KO/invalid_pat.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/invalid_pat.dk -------------------------------------------------------------------------------- /tests/KO/lexing_id.dk: -------------------------------------------------------------------------------- 1 | karaté:Type. 2 | -------------------------------------------------------------------------------- /tests/KO/missing_brackets.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/missing_brackets.lp -------------------------------------------------------------------------------- /tests/KO/nomodule.dk: -------------------------------------------------------------------------------- 1 | S : Unknown.module. 2 | -------------------------------------------------------------------------------- /tests/KO/notinj.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/notinj.dk -------------------------------------------------------------------------------- /tests/KO/notvarinenv.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/notvarinenv.lp -------------------------------------------------------------------------------- /tests/KO/parsing_eof.dk: -------------------------------------------------------------------------------- 1 | id:Type 2 | -------------------------------------------------------------------------------- /tests/KO/pat_rhs.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/pat_rhs.lp -------------------------------------------------------------------------------- /tests/KO/remove.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/remove.lp -------------------------------------------------------------------------------- /tests/KO/req_without_root_path.lp: -------------------------------------------------------------------------------- 1 | require bool; 2 | -------------------------------------------------------------------------------- /tests/KO/require_escape1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/require_escape1.lp -------------------------------------------------------------------------------- /tests/KO/require_escape2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/require_escape2.lp -------------------------------------------------------------------------------- /tests/KO/rule_var.dk: -------------------------------------------------------------------------------- 1 | A:Type. 2 | a:A. 3 | [x:A] x --> a. 4 | -------------------------------------------------------------------------------- /tests/KO/scoping_ext.dk: -------------------------------------------------------------------------------- 1 | id:toto.tata. 2 | -------------------------------------------------------------------------------- /tests/KO/self_require_escape.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/self_require_escape.lp -------------------------------------------------------------------------------- /tests/KO/typing_abstraction.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/typing_abstraction.dk -------------------------------------------------------------------------------- /tests/KO/typing_omega.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/typing_omega.dk -------------------------------------------------------------------------------- /tests/KO/typing_pi.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/typing_pi.dk -------------------------------------------------------------------------------- /tests/KO/typing_sort.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/typing_sort.dk -------------------------------------------------------------------------------- /tests/KO/unclosed_comment.dk: -------------------------------------------------------------------------------- 1 | (; Hello, world! 2 | -------------------------------------------------------------------------------- /tests/KO/unclosed_comment2.dk: -------------------------------------------------------------------------------- 1 | (; Hello, (; world! 2 | -------------------------------------------------------------------------------- /tests/KO/unclosed_comment3.dk: -------------------------------------------------------------------------------- 1 | (; Hello, (; world! ;) 2 | -------------------------------------------------------------------------------- /tests/KO/unsound.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/unsound.dk -------------------------------------------------------------------------------- /tests/KO/vectDependant.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/KO/vectDependant.dk -------------------------------------------------------------------------------- /tests/OK/1001.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1001.lp -------------------------------------------------------------------------------- /tests/OK/1006.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1006.lp -------------------------------------------------------------------------------- /tests/OK/1026.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1026.lp -------------------------------------------------------------------------------- /tests/OK/1033.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1033.lp -------------------------------------------------------------------------------- /tests/OK/1035.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1035.lp -------------------------------------------------------------------------------- /tests/OK/1101.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1101.lp -------------------------------------------------------------------------------- /tests/OK/1120.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1120.lp -------------------------------------------------------------------------------- /tests/OK/1141.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1141.lp -------------------------------------------------------------------------------- /tests/OK/1151.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1151.lp -------------------------------------------------------------------------------- /tests/OK/1190a.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1190a.lp -------------------------------------------------------------------------------- /tests/OK/1190b.lp: -------------------------------------------------------------------------------- 1 | require open tests.OK.1190a; 2 | 3 | notation f infix right 10; 4 | -------------------------------------------------------------------------------- /tests/OK/1190c.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1190c.lp -------------------------------------------------------------------------------- /tests/OK/1217.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1217.lp -------------------------------------------------------------------------------- /tests/OK/1247.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1247.lp -------------------------------------------------------------------------------- /tests/OK/1313.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/1313.lp -------------------------------------------------------------------------------- /tests/OK/215.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/215.lp -------------------------------------------------------------------------------- /tests/OK/225.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/225.lp -------------------------------------------------------------------------------- /tests/OK/244.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/244.lp -------------------------------------------------------------------------------- /tests/OK/245.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/245.lp -------------------------------------------------------------------------------- /tests/OK/245b.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/245b.lp -------------------------------------------------------------------------------- /tests/OK/262_legacy_parsing.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/262_legacy_parsing.dk -------------------------------------------------------------------------------- /tests/OK/262_pair_ex_1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/262_pair_ex_1.lp -------------------------------------------------------------------------------- /tests/OK/262_pair_ex_2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/262_pair_ex_2.lp -------------------------------------------------------------------------------- /tests/OK/262_parsing.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/262_parsing.lp -------------------------------------------------------------------------------- /tests/OK/262_private_in_lhs.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/262_private_in_lhs.lp -------------------------------------------------------------------------------- /tests/OK/273.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/273.lp -------------------------------------------------------------------------------- /tests/OK/292.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/292.lp -------------------------------------------------------------------------------- /tests/OK/298_lp.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/298_lp.lp -------------------------------------------------------------------------------- /tests/OK/301.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/301.lp -------------------------------------------------------------------------------- /tests/OK/303.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/303.lp -------------------------------------------------------------------------------- /tests/OK/328.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/328.lp -------------------------------------------------------------------------------- /tests/OK/330.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/330.lp -------------------------------------------------------------------------------- /tests/OK/330b.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/330b.lp -------------------------------------------------------------------------------- /tests/OK/341.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/341.lp -------------------------------------------------------------------------------- /tests/OK/359.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/359.lp -------------------------------------------------------------------------------- /tests/OK/430.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/430.lp -------------------------------------------------------------------------------- /tests/OK/547.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/547.lp -------------------------------------------------------------------------------- /tests/OK/55.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/55.dk -------------------------------------------------------------------------------- /tests/OK/565.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/565.lp -------------------------------------------------------------------------------- /tests/OK/573-2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/573-2.lp -------------------------------------------------------------------------------- /tests/OK/573.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/573.lp -------------------------------------------------------------------------------- /tests/OK/579_long_no_duplicate.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/579_long_no_duplicate.lp -------------------------------------------------------------------------------- /tests/OK/579_or_elim_long.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/579_or_elim_long.lp -------------------------------------------------------------------------------- /tests/OK/584_c_slow.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/584_c_slow.lp -------------------------------------------------------------------------------- /tests/OK/595_and_elim.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/595_and_elim.lp -------------------------------------------------------------------------------- /tests/OK/61.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/61.dk -------------------------------------------------------------------------------- /tests/OK/62.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/62.dk -------------------------------------------------------------------------------- /tests/OK/621c.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/621c.lp -------------------------------------------------------------------------------- /tests/OK/649_fo_27.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/649_fo_27.lp -------------------------------------------------------------------------------- /tests/OK/65.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/65.dk -------------------------------------------------------------------------------- /tests/OK/650.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/650.lp -------------------------------------------------------------------------------- /tests/OK/655.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/655.lp -------------------------------------------------------------------------------- /tests/OK/655b.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/655b.lp -------------------------------------------------------------------------------- /tests/OK/665.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/665.lp -------------------------------------------------------------------------------- /tests/OK/679.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/679.lp -------------------------------------------------------------------------------- /tests/OK/683.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/683.lp -------------------------------------------------------------------------------- /tests/OK/693.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/693.lp -------------------------------------------------------------------------------- /tests/OK/693_assume.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/693_assume.lp -------------------------------------------------------------------------------- /tests/OK/698_abst_impl.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/698_abst_impl.lp -------------------------------------------------------------------------------- /tests/OK/706.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/706.lp -------------------------------------------------------------------------------- /tests/OK/72.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/72.dk -------------------------------------------------------------------------------- /tests/OK/725.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/725.lp -------------------------------------------------------------------------------- /tests/OK/729.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/729.lp -------------------------------------------------------------------------------- /tests/OK/767.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/767.lp -------------------------------------------------------------------------------- /tests/OK/77.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/77.dk -------------------------------------------------------------------------------- /tests/OK/813.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/813.lp -------------------------------------------------------------------------------- /tests/OK/830.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/830.lp -------------------------------------------------------------------------------- /tests/OK/861.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/861.lp -------------------------------------------------------------------------------- /tests/OK/878.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/878.lp -------------------------------------------------------------------------------- /tests/OK/904.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/904.lp -------------------------------------------------------------------------------- /tests/OK/922.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/922.lp -------------------------------------------------------------------------------- /tests/OK/989.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/989.lp -------------------------------------------------------------------------------- /tests/OK/991.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/991.lp -------------------------------------------------------------------------------- /tests/OK/A.lp: -------------------------------------------------------------------------------- 1 | symbol A:TYPE; 2 | -------------------------------------------------------------------------------- /tests/OK/B1.lp: -------------------------------------------------------------------------------- 1 | require tests.OK.A; 2 | -------------------------------------------------------------------------------- /tests/OK/B2.lp: -------------------------------------------------------------------------------- 1 | require open tests.OK.A; 2 | -------------------------------------------------------------------------------- /tests/OK/Bool.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Bool.lp -------------------------------------------------------------------------------- /tests/OK/C1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/C1.lp -------------------------------------------------------------------------------- /tests/OK/C2.lp: -------------------------------------------------------------------------------- 1 | require open tests.OK.B2; 2 | 3 | type A; 4 | -------------------------------------------------------------------------------- /tests/OK/C3.lp: -------------------------------------------------------------------------------- 1 | require private open tests.OK.B2; 2 | 3 | type A; 4 | -------------------------------------------------------------------------------- /tests/OK/Classic.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Classic.lp -------------------------------------------------------------------------------- /tests/OK/Comp.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Comp.lp -------------------------------------------------------------------------------- /tests/OK/Epsilon.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Epsilon.lp -------------------------------------------------------------------------------- /tests/OK/Eq.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Eq.lp -------------------------------------------------------------------------------- /tests/OK/Escaped.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Escaped.lp -------------------------------------------------------------------------------- /tests/OK/FO.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/FO.dk -------------------------------------------------------------------------------- /tests/OK/FOL.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/FOL.lp -------------------------------------------------------------------------------- /tests/OK/HOL.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/HOL.lp -------------------------------------------------------------------------------- /tests/OK/Impred.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Impred.lp -------------------------------------------------------------------------------- /tests/OK/List.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/List.lp -------------------------------------------------------------------------------- /tests/OK/Nat.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Nat.lp -------------------------------------------------------------------------------- /tests/OK/Option.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Option.lp -------------------------------------------------------------------------------- /tests/OK/Pos.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Pos.lp -------------------------------------------------------------------------------- /tests/OK/Prop.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Prop.lp -------------------------------------------------------------------------------- /tests/OK/PropExt.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/PropExt.lp -------------------------------------------------------------------------------- /tests/OK/Set.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Set.lp -------------------------------------------------------------------------------- /tests/OK/String.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/String.lp -------------------------------------------------------------------------------- /tests/OK/Tactic.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Tactic.lp -------------------------------------------------------------------------------- /tests/OK/Z.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/Z.lp -------------------------------------------------------------------------------- /tests/OK/a b/escape file.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/a b/escape file.lp -------------------------------------------------------------------------------- /tests/OK/abstractions.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/abstractions.lp -------------------------------------------------------------------------------- /tests/OK/ac.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/ac.lp -------------------------------------------------------------------------------- /tests/OK/admit.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/admit.lp -------------------------------------------------------------------------------- /tests/OK/andPoly.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/andPoly.dk -------------------------------------------------------------------------------- /tests/OK/append.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/append.lp -------------------------------------------------------------------------------- /tests/OK/append_legacy.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/append_legacy.dk -------------------------------------------------------------------------------- /tests/OK/apply.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/apply.lp -------------------------------------------------------------------------------- /tests/OK/arity_diff.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/arity_diff.lp -------------------------------------------------------------------------------- /tests/OK/arity_var.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/arity_var.lp -------------------------------------------------------------------------------- /tests/OK/basic.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/basic.dk -------------------------------------------------------------------------------- /tests/OK/big_compute.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/big_compute.dk -------------------------------------------------------------------------------- /tests/OK/boolean.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/boolean.lp -------------------------------------------------------------------------------- /tests/OK/bug.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/bug.dk -------------------------------------------------------------------------------- /tests/OK/bug0.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/bug0.dk -------------------------------------------------------------------------------- /tests/OK/builtin_succ_zero.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/builtin_succ_zero.lp -------------------------------------------------------------------------------- /tests/OK/change.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/change.lp -------------------------------------------------------------------------------- /tests/OK/check.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/check.dk -------------------------------------------------------------------------------- /tests/OK/church.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/church.dk -------------------------------------------------------------------------------- /tests/OK/cic.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cic.dk -------------------------------------------------------------------------------- /tests/OK/coc.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/coc.dk -------------------------------------------------------------------------------- /tests/OK/coercions.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/coercions.lp -------------------------------------------------------------------------------- /tests/OK/comment_in_qid.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/comment_in_qid.lp -------------------------------------------------------------------------------- /tests/OK/compute.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/compute.lp -------------------------------------------------------------------------------- /tests/OK/compute_legacy.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/compute_legacy.dk -------------------------------------------------------------------------------- /tests/OK/cp0.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cp0.lp -------------------------------------------------------------------------------- /tests/OK/cp1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cp1.lp -------------------------------------------------------------------------------- /tests/OK/cp2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cp2.lp -------------------------------------------------------------------------------- /tests/OK/cp3.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cp3.lp -------------------------------------------------------------------------------- /tests/OK/cr_qu.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cr_qu.lp -------------------------------------------------------------------------------- /tests/OK/cupicef.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/cupicef.dk -------------------------------------------------------------------------------- /tests/OK/decimal.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/decimal.lp -------------------------------------------------------------------------------- /tests/OK/declared.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/declared.lp -------------------------------------------------------------------------------- /tests/OK/doc.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/doc.lp -------------------------------------------------------------------------------- /tests/OK/domainfree.dk: -------------------------------------------------------------------------------- 1 | A:Type. 2 | F:(A->A)->A. 3 | def f := F (x=>x). 4 | -------------------------------------------------------------------------------- /tests/OK/dotpat.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/dotpat.dk -------------------------------------------------------------------------------- /tests/OK/dummy1.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/dummy1.dk -------------------------------------------------------------------------------- /tests/OK/empty.lp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/OK/emptySet.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/emptySet.dk -------------------------------------------------------------------------------- /tests/OK/escape_path.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/escape_path.lp -------------------------------------------------------------------------------- /tests/OK/eta_equality.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/eta_equality.lp -------------------------------------------------------------------------------- /tests/OK/file.with.dot.lp: -------------------------------------------------------------------------------- 1 | symbol A:TYPE; 2 | -------------------------------------------------------------------------------- /tests/OK/firstOrder.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/firstOrder.dk -------------------------------------------------------------------------------- /tests/OK/firstOrder_v2.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/firstOrder_v2.dk -------------------------------------------------------------------------------- /tests/OK/foo.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/foo.lp -------------------------------------------------------------------------------- /tests/OK/for_inductive.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/for_inductive.lp -------------------------------------------------------------------------------- /tests/OK/freevars-constraints.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/freevars-constraints.lp -------------------------------------------------------------------------------- /tests/OK/gaspard.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/gaspard.dk -------------------------------------------------------------------------------- /tests/OK/generalize.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/generalize.lp -------------------------------------------------------------------------------- /tests/OK/group.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/group.lp -------------------------------------------------------------------------------- /tests/OK/half.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/half.dk -------------------------------------------------------------------------------- /tests/OK/have.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/have.lp -------------------------------------------------------------------------------- /tests/OK/ho_bug1.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/ho_bug1.dk -------------------------------------------------------------------------------- /tests/OK/ho_bug2.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/ho_bug2.dk -------------------------------------------------------------------------------- /tests/OK/hott.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/hott.dk -------------------------------------------------------------------------------- /tests/OK/identifiers.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/identifiers.lp -------------------------------------------------------------------------------- /tests/OK/implicitArgs1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/implicitArgs1.lp -------------------------------------------------------------------------------- /tests/OK/implicitArgs2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/implicitArgs2.lp -------------------------------------------------------------------------------- /tests/OK/implicitArgs3.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/implicitArgs3.lp -------------------------------------------------------------------------------- /tests/OK/implicitArgs4.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/implicitArgs4.lp -------------------------------------------------------------------------------- /tests/OK/indind.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/indind.lp -------------------------------------------------------------------------------- /tests/OK/indrec.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/indrec.lp -------------------------------------------------------------------------------- /tests/OK/inductive.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/inductive.lp -------------------------------------------------------------------------------- /tests/OK/infer.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/infer.lp -------------------------------------------------------------------------------- /tests/OK/infix.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/infix.lp -------------------------------------------------------------------------------- /tests/OK/inj.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/inj.dk -------------------------------------------------------------------------------- /tests/OK/let.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/let.lp -------------------------------------------------------------------------------- /tests/OK/logic.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/logic.lp -------------------------------------------------------------------------------- /tests/OK/lpparse.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/lpparse.lp -------------------------------------------------------------------------------- /tests/OK/lpparse2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/lpparse2.lp -------------------------------------------------------------------------------- /tests/OK/max-suc-alg.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/max-suc-alg.lp -------------------------------------------------------------------------------- /tests/OK/michael.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/michael.lp -------------------------------------------------------------------------------- /tests/OK/miller.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/miller.dk -------------------------------------------------------------------------------- /tests/OK/miller2.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/miller2.dk -------------------------------------------------------------------------------- /tests/OK/mini.dk: -------------------------------------------------------------------------------- 1 | N : Type. 2 | -------------------------------------------------------------------------------- /tests/OK/nat_id1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nat_id1.lp -------------------------------------------------------------------------------- /tests/OK/nat_id2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nat_id2.lp -------------------------------------------------------------------------------- /tests/OK/natproofs.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/natproofs.lp -------------------------------------------------------------------------------- /tests/OK/natural.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/natural.lp -------------------------------------------------------------------------------- /tests/OK/nested_comment.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nested_comment.dk -------------------------------------------------------------------------------- /tests/OK/nested_comment_lp.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nested_comment_lp.lp -------------------------------------------------------------------------------- /tests/OK/nonLeftLinear.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nonLeftLinear.dk -------------------------------------------------------------------------------- /tests/OK/nonLeftLinear2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nonLeftLinear2.lp -------------------------------------------------------------------------------- /tests/OK/nonlin.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/nonlin.dk -------------------------------------------------------------------------------- /tests/OK/not-eager.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/not-eager.lp -------------------------------------------------------------------------------- /tests/OK/opaque.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/opaque.lp -------------------------------------------------------------------------------- /tests/OK/parametricCoercions.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/parametricCoercions.lp -------------------------------------------------------------------------------- /tests/OK/patt.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/patt.lp -------------------------------------------------------------------------------- /tests/OK/patterns.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/patterns.lp -------------------------------------------------------------------------------- /tests/OK/perf_rw_engine.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/perf_rw_engine.lp -------------------------------------------------------------------------------- /tests/OK/perf_rw_fib-nonRightLin.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/perf_rw_fib-nonRightLin.lp -------------------------------------------------------------------------------- /tests/OK/perf_rw_nl.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/perf_rw_nl.lp -------------------------------------------------------------------------------- /tests/OK/plus.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/plus.dk -------------------------------------------------------------------------------- /tests/OK/plus_ac.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/plus_ac.lp -------------------------------------------------------------------------------- /tests/OK/postfix.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/postfix.lp -------------------------------------------------------------------------------- /tests/OK/power-fact.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/power-fact.lp -------------------------------------------------------------------------------- /tests/OK/prefix.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/prefix.lp -------------------------------------------------------------------------------- /tests/OK/print_notation_numbers.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/print_notation_numbers.lp -------------------------------------------------------------------------------- /tests/OK/private.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/private.lp -------------------------------------------------------------------------------- /tests/OK/quant.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/quant.lp -------------------------------------------------------------------------------- /tests/OK/quant2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/quant2.lp -------------------------------------------------------------------------------- /tests/OK/raphael.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/raphael.dk -------------------------------------------------------------------------------- /tests/OK/remove.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/remove.lp -------------------------------------------------------------------------------- /tests/OK/req.file.with.dot.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/req.file.with.dot.lp -------------------------------------------------------------------------------- /tests/OK/require_nondkmident.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/require_nondkmident.lp -------------------------------------------------------------------------------- /tests/OK/require_symbol.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/require_symbol.lp -------------------------------------------------------------------------------- /tests/OK/rewrite0.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/rewrite0.lp -------------------------------------------------------------------------------- /tests/OK/rewrite1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/rewrite1.lp -------------------------------------------------------------------------------- /tests/OK/rewrite2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/rewrite2.lp -------------------------------------------------------------------------------- /tests/OK/rewrite3.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/rewrite3.lp -------------------------------------------------------------------------------- /tests/OK/rule_order.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/rule_order.lp -------------------------------------------------------------------------------- /tests/OK/simp_beta.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/simp_beta.lp -------------------------------------------------------------------------------- /tests/OK/strictly_positive_1.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/strictly_positive_1.lp -------------------------------------------------------------------------------- /tests/OK/strictly_positive_2.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/strictly_positive_2.lp -------------------------------------------------------------------------------- /tests/OK/subst.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/subst.dk -------------------------------------------------------------------------------- /tests/OK/surjective.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/surjective.dk -------------------------------------------------------------------------------- /tests/OK/sym_decl.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/sym_decl.lp -------------------------------------------------------------------------------- /tests/OK/symbol.lp: -------------------------------------------------------------------------------- 1 | // The module path of this file contains a keyword ident. 2 | -------------------------------------------------------------------------------- /tests/OK/tail.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/tail.lp -------------------------------------------------------------------------------- /tests/OK/tautologies.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/tautologies.lp -------------------------------------------------------------------------------- /tests/OK/test.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/test.dk -------------------------------------------------------------------------------- /tests/OK/tptp.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/tptp.dk -------------------------------------------------------------------------------- /tests/OK/triangular.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/triangular.lp -------------------------------------------------------------------------------- /tests/OK/try.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/try.lp -------------------------------------------------------------------------------- /tests/OK/tuto.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/tuto.dk -------------------------------------------------------------------------------- /tests/OK/tutorial.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/tutorial.lp -------------------------------------------------------------------------------- /tests/OK/type.lp: -------------------------------------------------------------------------------- 1 | symbol N : TYPE; 2 | type N; 3 | -------------------------------------------------------------------------------- /tests/OK/type_rewrite.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/type_rewrite.dk -------------------------------------------------------------------------------- /tests/OK/unif_hint.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/unif_hint.lp -------------------------------------------------------------------------------- /tests/OK/uninst_meta_in_rhs.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/uninst_meta_in_rhs.dk -------------------------------------------------------------------------------- /tests/OK/varmatch.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/varmatch.lp -------------------------------------------------------------------------------- /tests/OK/vectDependant.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/vectDependant.dk -------------------------------------------------------------------------------- /tests/OK/why3.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/why3.lp -------------------------------------------------------------------------------- /tests/OK/wildcards.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/wildcards.dk -------------------------------------------------------------------------------- /tests/OK/xor.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/xor.lp -------------------------------------------------------------------------------- /tests/OK/zero.lp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/OK/zero.lp -------------------------------------------------------------------------------- /tests/dtrees.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/dtrees.sh -------------------------------------------------------------------------------- /tests/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/dune -------------------------------------------------------------------------------- /tests/export_dk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/export_dk.sh -------------------------------------------------------------------------------- /tests/export_lp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/export_lp.sh -------------------------------------------------------------------------------- /tests/export_raw_dk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/export_raw_dk.sh -------------------------------------------------------------------------------- /tests/kernel.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/kernel.ml -------------------------------------------------------------------------------- /tests/lambdapi.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/lambdapi.pkg -------------------------------------------------------------------------------- /tests/ok_ko.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/ok_ko.ml -------------------------------------------------------------------------------- /tests/purity.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/purity.ml -------------------------------------------------------------------------------- /tests/regressions/dtrees.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/dtrees.expected -------------------------------------------------------------------------------- /tests/regressions/dtrees.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/dtrees.ml -------------------------------------------------------------------------------- /tests/regressions/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/dune -------------------------------------------------------------------------------- /tests/regressions/hrs.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/hrs.expected -------------------------------------------------------------------------------- /tests/regressions/hrs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/hrs.ml -------------------------------------------------------------------------------- /tests/regressions/xtc.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/xtc.expected -------------------------------------------------------------------------------- /tests/regressions/xtc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/regressions/xtc.ml -------------------------------------------------------------------------------- /tests/rewriting.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/rewriting.ml -------------------------------------------------------------------------------- /tests/test_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/test_lib.sh -------------------------------------------------------------------------------- /tests/test_load.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Deducteam/lambdapi/HEAD/tests/test_load.sh --------------------------------------------------------------------------------