├── .gitattributes ├── .gitignore ├── .header.dk ├── .header.ml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── opam ├── papers ├── ijcar18 │ ├── .dir-locals.el │ ├── Makefile │ ├── aliascnt.sty │ ├── answer.txt │ ├── archsat.tex │ ├── bench.tex │ ├── biblio.bib │ ├── concl.tex │ ├── intro.tex │ ├── llncs.cls │ ├── macros.tex │ ├── pb64.dot │ ├── splncs03.bst │ ├── sprmindx.sty │ ├── super.tex │ └── tabrew.tex ├── mcsat_rewriting │ ├── biblio.bib │ ├── macros.tex │ ├── msat.log │ ├── msat.pdf │ └── msat.tex └── smt18 │ ├── .dir-locals.el │ ├── Makefile │ ├── archsat.tex │ ├── bench.tex │ ├── biblio.bib │ ├── concl.tex │ ├── easychair.cls │ ├── intro.tex │ ├── macros.tex │ ├── pb64.dot │ ├── super.tex │ └── tabrew.tex ├── src ├── .merlin ├── .ocamlinit ├── Makefile ├── README.md ├── _tags ├── algos │ ├── closure.ml │ ├── closure.mli │ ├── constraints.ml │ ├── constraints.mli │ ├── heuristic.ml │ ├── heuristic.mli │ ├── index.ml │ ├── index.mli │ ├── lpo.ml │ ├── lpo.mli │ ├── match.ml │ ├── match.mli │ ├── rewrite.ml │ ├── rewrite.mli │ ├── rigid.ml │ ├── rigid.mli │ ├── superposition.ml │ ├── superposition.mli │ ├── synth.ml │ ├── synth.mli │ ├── unif.ml │ └── unif.mli ├── archsat.mlpack ├── base │ ├── builtin.ml │ ├── builtin.mli │ ├── expr.ml │ ├── expr.mli │ ├── mapping.ml │ ├── mapping.mli │ ├── position.ml │ ├── position.mli │ ├── pretty.ml │ ├── sig.ml │ ├── tag.ml │ ├── tag.mli │ ├── type.ml │ └── type.mli ├── core │ ├── dispatcher.ml │ ├── dispatcher.mli │ ├── ext.ml │ ├── ext.mli │ ├── ext_arith.ml │ ├── ext_arith.mli │ ├── ext_array.ml │ ├── ext_array.mli │ ├── ext_constraints.ml │ ├── ext_constraints.mli │ ├── ext_eq.ml │ ├── ext_eq.mli │ ├── ext_functions.ml │ ├── ext_functions.mli │ ├── ext_logic.ml │ ├── ext_logic.mli │ ├── ext_meta.ml │ ├── ext_meta.mli │ ├── ext_prenex.ml │ ├── ext_prenex.mli │ ├── ext_prop.ml │ ├── ext_prop.mli │ ├── ext_rewrite.ml │ ├── ext_rewrite.mli │ ├── ext_skolem.ml │ ├── ext_skolem.mli │ ├── ext_stats.ml │ ├── ext_stats.mli │ ├── inst.ml │ ├── inst.mli │ ├── solver.ml │ └── solver.mli ├── debug │ ├── level.ml │ ├── level.mli │ ├── logs.ml │ ├── logs.mli │ ├── section.ml │ ├── section.mli │ ├── stats.ml │ └── stats.mli ├── input │ ├── in.ml │ ├── options.ml │ ├── options.mli │ ├── semantics.ml │ └── semantics.mli ├── main.ml ├── middle │ ├── extension.ml │ ├── extension.mli │ ├── extension_intf.ml │ ├── pipe.ml │ ├── pipe.mli │ ├── pipeline.ml │ └── pipeline.mli ├── misc │ ├── prime.ml │ ├── prime.mli │ ├── printBox.ml │ └── printBox.mli ├── output │ ├── export.ml │ ├── export.mli │ ├── out.ml │ ├── out.mli │ ├── std.ml │ ├── szs.ml │ ├── tptp.ml │ └── tptp.mli ├── proof │ ├── coq.ml │ ├── coq.mli │ ├── dedukti.ml │ ├── dedukti.mli │ ├── dot.ml │ ├── dot.mli │ ├── eq.ml │ ├── eq.mli │ ├── logic.ml │ ├── logic.mli │ ├── proof.ml │ ├── proof.mli │ ├── prove.ml │ ├── prove.mli │ ├── quant.ml │ ├── quant.mli │ ├── resolution.ml │ ├── resolution.mli │ ├── term.ml │ ├── term.mli │ ├── unsat_core.ml │ └── unsat_core.mli ├── test │ ├── closure_test.ml │ ├── closure_test.mli │ ├── expr_test.ml │ ├── expr_test.mli │ ├── index_test.ml │ ├── index_test.mli │ ├── match_test.ml │ ├── match_test.mli │ ├── meta_test.ml │ ├── meta_test.mli │ ├── misc_test.ml │ ├── misc_test.mli │ ├── parse.ml │ ├── parse.mli │ ├── run_test.ml │ ├── unif_test.ml │ └── unif_test.mli └── util │ ├── arith.ml │ ├── arith.mli │ ├── backtrack.ml │ ├── backtrack.mli │ ├── comparison.ml │ ├── comparison.mli │ ├── escape.ml │ ├── escape.mli │ ├── util.ml │ └── util.mli ├── static ├── Makefile ├── cc.dk ├── classical.dk ├── dk_logic.dk ├── epsilon.dk └── logic.dk ├── tests ├── Makefile ├── Makefile.shared ├── bugs │ ├── Makefile.prove │ ├── Makefile.solve │ ├── eq_diamond2.smt2 │ ├── eq_diamond20.smt2 │ ├── list1.smt2 │ └── list_poly.p ├── clauses │ ├── Makefile.prove │ ├── Makefile.solve │ ├── clause_1.cnf │ └── clause_2.cnf ├── david │ ├── contraction.p │ └── david01.p ├── equality │ ├── Makefile.prove │ ├── Makefile.solve │ ├── eq-fun_1.smt2 │ ├── eq-fun_2.smt2 │ ├── eq-fun_3.smt2 │ ├── eq-fun_4.smt2 │ ├── eq-fun_5.smt2 │ ├── eq-fun_6.smt2 │ ├── eq-pred_1.smt2 │ ├── eq-refl_1.smt2 │ ├── eq-sym_1.smt2 │ ├── eq-sym_2.p │ ├── eq-trans_1.smt2 │ ├── eq-trans_2.smt2 │ └── eq-trans_3.smt2 ├── include │ ├── Makefile │ ├── ax_1.ax │ ├── ax_2.ax │ ├── ax_3.ax │ ├── test_1.p │ ├── test_2.p │ └── test_3.p ├── logic │ ├── Makefile.prove │ ├── Makefile.solve │ ├── and_1.smt2 │ ├── and_2.smt2 │ ├── and_3.smt2 │ ├── and_4.smt2 │ ├── and_5.smt2 │ ├── equiv_1.p │ ├── equiv_2.p │ ├── imply_1.smt2 │ ├── imply_2.smt2 │ ├── imply_3.smt2 │ ├── imply_4.smt2 │ ├── imply_5.smt2 │ ├── imply_6.smt2 │ ├── imply_7.smt2 │ ├── imply_8.smt2 │ ├── not-and_1.smt2 │ ├── not-and_2.smt2 │ ├── not-and_3.smt2 │ ├── not-and_4.smt2 │ ├── not-and_5.smt2 │ ├── not-equiv_1.p │ ├── not-equiv_2.p │ ├── not-imply_1.smt2 │ ├── not-imply_2.smt2 │ ├── not-imply_3.smt2 │ ├── not-imply_4.smt2 │ ├── not-or_1.smt2 │ ├── not-or_2.smt2 │ ├── not-or_3.smt2 │ ├── not-or_4.smt2 │ ├── not-or_5.smt2 │ ├── or_1.smt2 │ ├── or_2.smt2 │ ├── or_3.smt2 │ ├── or_4.smt2 │ └── or_5.smt2 ├── parsing │ ├── Axioms │ │ ├── SYN000+0.ax │ │ ├── SYN000-0.ax │ │ ├── SYN000^0.ax │ │ ├── SYN000_0.ax │ │ ├── SYN001-0.ax │ │ └── SYN002+0.ax │ ├── Makefile │ ├── SYN000+1.p │ ├── SYN000+2.p │ ├── SYN000-1.p │ ├── SYN000-2.p │ ├── SYN000=2.p │ ├── SYN000^1.p │ ├── SYN000^2.p │ ├── SYN000_1.p │ └── SYN000_2.p ├── poly │ ├── Makefile.prove │ ├── Makefile.solve │ ├── exists_1.p │ ├── exists_2.p │ ├── forall_1.p │ ├── forall_2.p │ ├── not-exists_1.p │ ├── not-exists_2.p │ ├── not-forall_1.p │ └── not-forall_2.p ├── quant │ ├── Makefile.prove │ ├── Makefile.solve │ ├── exists_1.p │ ├── exists_2.p │ ├── exists_3.p │ ├── exists_4.p │ ├── exists_5.p │ ├── exists_6.p │ ├── forall_1.p │ ├── forall_2.p │ ├── forall_3.p │ ├── forall_4.p │ ├── forall_5.p │ ├── forall_6.p │ ├── forall_7.p │ ├── inst_1.p │ ├── inst_2.p │ ├── inst_3.p │ ├── inst_4.p │ ├── inst_5.p │ ├── inst_6.p │ ├── not-exists_1.p │ ├── not-exists_2.p │ ├── not-exists_3.p │ ├── not-exists_4.p │ ├── not-exists_5.p │ ├── not-exists_6.p │ ├── not-forall_1.p │ ├── not-forall_2.p │ └── not-forall_3.p ├── rewr │ ├── Makefile.prove │ ├── Makefile.solve │ ├── array_get_1.zf │ ├── array_get_2.zf │ ├── array_get_3.zf │ ├── axioms │ │ ├── array.zf │ │ └── bset.zf │ ├── diff_empty.zf │ ├── eq_1.zf │ ├── eq_2.zf │ ├── list1.smt2 │ └── subset_reflexivity.zf └── typing │ ├── Makefile │ └── unify_01.zf └── tools ├── flamegraph.sh └── profile.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/.gitignore -------------------------------------------------------------------------------- /.header.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/.header.dk -------------------------------------------------------------------------------- /.header.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/.header.ml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/README.md -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/opam -------------------------------------------------------------------------------- /papers/ijcar18/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/.dir-locals.el -------------------------------------------------------------------------------- /papers/ijcar18/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/Makefile -------------------------------------------------------------------------------- /papers/ijcar18/aliascnt.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/aliascnt.sty -------------------------------------------------------------------------------- /papers/ijcar18/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/answer.txt -------------------------------------------------------------------------------- /papers/ijcar18/archsat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/archsat.tex -------------------------------------------------------------------------------- /papers/ijcar18/bench.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/bench.tex -------------------------------------------------------------------------------- /papers/ijcar18/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/biblio.bib -------------------------------------------------------------------------------- /papers/ijcar18/concl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/concl.tex -------------------------------------------------------------------------------- /papers/ijcar18/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/intro.tex -------------------------------------------------------------------------------- /papers/ijcar18/llncs.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/llncs.cls -------------------------------------------------------------------------------- /papers/ijcar18/macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/macros.tex -------------------------------------------------------------------------------- /papers/ijcar18/pb64.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/pb64.dot -------------------------------------------------------------------------------- /papers/ijcar18/splncs03.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/splncs03.bst -------------------------------------------------------------------------------- /papers/ijcar18/sprmindx.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/sprmindx.sty -------------------------------------------------------------------------------- /papers/ijcar18/super.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/super.tex -------------------------------------------------------------------------------- /papers/ijcar18/tabrew.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/ijcar18/tabrew.tex -------------------------------------------------------------------------------- /papers/mcsat_rewriting/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/mcsat_rewriting/biblio.bib -------------------------------------------------------------------------------- /papers/mcsat_rewriting/macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/mcsat_rewriting/macros.tex -------------------------------------------------------------------------------- /papers/mcsat_rewriting/msat.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/mcsat_rewriting/msat.log -------------------------------------------------------------------------------- /papers/mcsat_rewriting/msat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/mcsat_rewriting/msat.pdf -------------------------------------------------------------------------------- /papers/mcsat_rewriting/msat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/mcsat_rewriting/msat.tex -------------------------------------------------------------------------------- /papers/smt18/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/.dir-locals.el -------------------------------------------------------------------------------- /papers/smt18/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/Makefile -------------------------------------------------------------------------------- /papers/smt18/archsat.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/archsat.tex -------------------------------------------------------------------------------- /papers/smt18/bench.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/bench.tex -------------------------------------------------------------------------------- /papers/smt18/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/biblio.bib -------------------------------------------------------------------------------- /papers/smt18/concl.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/concl.tex -------------------------------------------------------------------------------- /papers/smt18/easychair.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/easychair.cls -------------------------------------------------------------------------------- /papers/smt18/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/intro.tex -------------------------------------------------------------------------------- /papers/smt18/macros.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/macros.tex -------------------------------------------------------------------------------- /papers/smt18/pb64.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/pb64.dot -------------------------------------------------------------------------------- /papers/smt18/super.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/super.tex -------------------------------------------------------------------------------- /papers/smt18/tabrew.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/papers/smt18/tabrew.tex -------------------------------------------------------------------------------- /src/.merlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/.merlin -------------------------------------------------------------------------------- /src/.ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/.ocamlinit -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/README.md -------------------------------------------------------------------------------- /src/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/_tags -------------------------------------------------------------------------------- /src/algos/closure.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/closure.ml -------------------------------------------------------------------------------- /src/algos/closure.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/closure.mli -------------------------------------------------------------------------------- /src/algos/constraints.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/constraints.ml -------------------------------------------------------------------------------- /src/algos/constraints.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/constraints.mli -------------------------------------------------------------------------------- /src/algos/heuristic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/heuristic.ml -------------------------------------------------------------------------------- /src/algos/heuristic.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/heuristic.mli -------------------------------------------------------------------------------- /src/algos/index.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/index.ml -------------------------------------------------------------------------------- /src/algos/index.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/index.mli -------------------------------------------------------------------------------- /src/algos/lpo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/lpo.ml -------------------------------------------------------------------------------- /src/algos/lpo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/lpo.mli -------------------------------------------------------------------------------- /src/algos/match.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/match.ml -------------------------------------------------------------------------------- /src/algos/match.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/match.mli -------------------------------------------------------------------------------- /src/algos/rewrite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/rewrite.ml -------------------------------------------------------------------------------- /src/algos/rewrite.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/rewrite.mli -------------------------------------------------------------------------------- /src/algos/rigid.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/rigid.ml -------------------------------------------------------------------------------- /src/algos/rigid.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/rigid.mli -------------------------------------------------------------------------------- /src/algos/superposition.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/superposition.ml -------------------------------------------------------------------------------- /src/algos/superposition.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/superposition.mli -------------------------------------------------------------------------------- /src/algos/synth.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/synth.ml -------------------------------------------------------------------------------- /src/algos/synth.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/synth.mli -------------------------------------------------------------------------------- /src/algos/unif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/unif.ml -------------------------------------------------------------------------------- /src/algos/unif.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/algos/unif.mli -------------------------------------------------------------------------------- /src/archsat.mlpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/archsat.mlpack -------------------------------------------------------------------------------- /src/base/builtin.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/builtin.ml -------------------------------------------------------------------------------- /src/base/builtin.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/builtin.mli -------------------------------------------------------------------------------- /src/base/expr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/expr.ml -------------------------------------------------------------------------------- /src/base/expr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/expr.mli -------------------------------------------------------------------------------- /src/base/mapping.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/mapping.ml -------------------------------------------------------------------------------- /src/base/mapping.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/mapping.mli -------------------------------------------------------------------------------- /src/base/position.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/position.ml -------------------------------------------------------------------------------- /src/base/position.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/position.mli -------------------------------------------------------------------------------- /src/base/pretty.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/pretty.ml -------------------------------------------------------------------------------- /src/base/sig.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/sig.ml -------------------------------------------------------------------------------- /src/base/tag.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/tag.ml -------------------------------------------------------------------------------- /src/base/tag.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/tag.mli -------------------------------------------------------------------------------- /src/base/type.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/type.ml -------------------------------------------------------------------------------- /src/base/type.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/base/type.mli -------------------------------------------------------------------------------- /src/core/dispatcher.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/dispatcher.ml -------------------------------------------------------------------------------- /src/core/dispatcher.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/dispatcher.mli -------------------------------------------------------------------------------- /src/core/ext.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext.ml -------------------------------------------------------------------------------- /src/core/ext.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext.mli -------------------------------------------------------------------------------- /src/core/ext_arith.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_arith.ml -------------------------------------------------------------------------------- /src/core/ext_arith.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_arith.mli -------------------------------------------------------------------------------- /src/core/ext_array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_array.ml -------------------------------------------------------------------------------- /src/core/ext_array.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_array.mli -------------------------------------------------------------------------------- /src/core/ext_constraints.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_constraints.ml -------------------------------------------------------------------------------- /src/core/ext_constraints.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_constraints.mli -------------------------------------------------------------------------------- /src/core/ext_eq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_eq.ml -------------------------------------------------------------------------------- /src/core/ext_eq.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_eq.mli -------------------------------------------------------------------------------- /src/core/ext_functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_functions.ml -------------------------------------------------------------------------------- /src/core/ext_functions.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_functions.mli -------------------------------------------------------------------------------- /src/core/ext_logic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_logic.ml -------------------------------------------------------------------------------- /src/core/ext_logic.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_logic.mli -------------------------------------------------------------------------------- /src/core/ext_meta.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_meta.ml -------------------------------------------------------------------------------- /src/core/ext_meta.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_meta.mli -------------------------------------------------------------------------------- /src/core/ext_prenex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_prenex.ml -------------------------------------------------------------------------------- /src/core/ext_prenex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_prenex.mli -------------------------------------------------------------------------------- /src/core/ext_prop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_prop.ml -------------------------------------------------------------------------------- /src/core/ext_prop.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_prop.mli -------------------------------------------------------------------------------- /src/core/ext_rewrite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_rewrite.ml -------------------------------------------------------------------------------- /src/core/ext_rewrite.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_rewrite.mli -------------------------------------------------------------------------------- /src/core/ext_skolem.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_skolem.ml -------------------------------------------------------------------------------- /src/core/ext_skolem.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_skolem.mli -------------------------------------------------------------------------------- /src/core/ext_stats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_stats.ml -------------------------------------------------------------------------------- /src/core/ext_stats.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/ext_stats.mli -------------------------------------------------------------------------------- /src/core/inst.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/inst.ml -------------------------------------------------------------------------------- /src/core/inst.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/inst.mli -------------------------------------------------------------------------------- /src/core/solver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/solver.ml -------------------------------------------------------------------------------- /src/core/solver.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/core/solver.mli -------------------------------------------------------------------------------- /src/debug/level.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/level.ml -------------------------------------------------------------------------------- /src/debug/level.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/level.mli -------------------------------------------------------------------------------- /src/debug/logs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/logs.ml -------------------------------------------------------------------------------- /src/debug/logs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/logs.mli -------------------------------------------------------------------------------- /src/debug/section.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/section.ml -------------------------------------------------------------------------------- /src/debug/section.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/section.mli -------------------------------------------------------------------------------- /src/debug/stats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/stats.ml -------------------------------------------------------------------------------- /src/debug/stats.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/debug/stats.mli -------------------------------------------------------------------------------- /src/input/in.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/input/in.ml -------------------------------------------------------------------------------- /src/input/options.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/input/options.ml -------------------------------------------------------------------------------- /src/input/options.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/input/options.mli -------------------------------------------------------------------------------- /src/input/semantics.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/input/semantics.ml -------------------------------------------------------------------------------- /src/input/semantics.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/input/semantics.mli -------------------------------------------------------------------------------- /src/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/main.ml -------------------------------------------------------------------------------- /src/middle/extension.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/extension.ml -------------------------------------------------------------------------------- /src/middle/extension.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/extension.mli -------------------------------------------------------------------------------- /src/middle/extension_intf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/extension_intf.ml -------------------------------------------------------------------------------- /src/middle/pipe.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/pipe.ml -------------------------------------------------------------------------------- /src/middle/pipe.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/pipe.mli -------------------------------------------------------------------------------- /src/middle/pipeline.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/pipeline.ml -------------------------------------------------------------------------------- /src/middle/pipeline.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/middle/pipeline.mli -------------------------------------------------------------------------------- /src/misc/prime.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/misc/prime.ml -------------------------------------------------------------------------------- /src/misc/prime.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/misc/prime.mli -------------------------------------------------------------------------------- /src/misc/printBox.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/misc/printBox.ml -------------------------------------------------------------------------------- /src/misc/printBox.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/misc/printBox.mli -------------------------------------------------------------------------------- /src/output/export.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/export.ml -------------------------------------------------------------------------------- /src/output/export.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/export.mli -------------------------------------------------------------------------------- /src/output/out.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/out.ml -------------------------------------------------------------------------------- /src/output/out.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/out.mli -------------------------------------------------------------------------------- /src/output/std.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/std.ml -------------------------------------------------------------------------------- /src/output/szs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/szs.ml -------------------------------------------------------------------------------- /src/output/tptp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/tptp.ml -------------------------------------------------------------------------------- /src/output/tptp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/output/tptp.mli -------------------------------------------------------------------------------- /src/proof/coq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/coq.ml -------------------------------------------------------------------------------- /src/proof/coq.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/coq.mli -------------------------------------------------------------------------------- /src/proof/dedukti.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/dedukti.ml -------------------------------------------------------------------------------- /src/proof/dedukti.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/dedukti.mli -------------------------------------------------------------------------------- /src/proof/dot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/dot.ml -------------------------------------------------------------------------------- /src/proof/dot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/dot.mli -------------------------------------------------------------------------------- /src/proof/eq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/eq.ml -------------------------------------------------------------------------------- /src/proof/eq.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/eq.mli -------------------------------------------------------------------------------- /src/proof/logic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/logic.ml -------------------------------------------------------------------------------- /src/proof/logic.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/logic.mli -------------------------------------------------------------------------------- /src/proof/proof.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/proof.ml -------------------------------------------------------------------------------- /src/proof/proof.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/proof.mli -------------------------------------------------------------------------------- /src/proof/prove.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/prove.ml -------------------------------------------------------------------------------- /src/proof/prove.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/prove.mli -------------------------------------------------------------------------------- /src/proof/quant.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/quant.ml -------------------------------------------------------------------------------- /src/proof/quant.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/quant.mli -------------------------------------------------------------------------------- /src/proof/resolution.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/resolution.ml -------------------------------------------------------------------------------- /src/proof/resolution.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/resolution.mli -------------------------------------------------------------------------------- /src/proof/term.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/term.ml -------------------------------------------------------------------------------- /src/proof/term.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/term.mli -------------------------------------------------------------------------------- /src/proof/unsat_core.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/unsat_core.ml -------------------------------------------------------------------------------- /src/proof/unsat_core.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/proof/unsat_core.mli -------------------------------------------------------------------------------- /src/test/closure_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/closure_test.ml -------------------------------------------------------------------------------- /src/test/closure_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/closure_test.mli -------------------------------------------------------------------------------- /src/test/expr_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/expr_test.ml -------------------------------------------------------------------------------- /src/test/expr_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/expr_test.mli -------------------------------------------------------------------------------- /src/test/index_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/index_test.ml -------------------------------------------------------------------------------- /src/test/index_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/index_test.mli -------------------------------------------------------------------------------- /src/test/match_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/match_test.ml -------------------------------------------------------------------------------- /src/test/match_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/match_test.mli -------------------------------------------------------------------------------- /src/test/meta_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/meta_test.ml -------------------------------------------------------------------------------- /src/test/meta_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/meta_test.mli -------------------------------------------------------------------------------- /src/test/misc_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/misc_test.ml -------------------------------------------------------------------------------- /src/test/misc_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/misc_test.mli -------------------------------------------------------------------------------- /src/test/parse.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/parse.ml -------------------------------------------------------------------------------- /src/test/parse.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/parse.mli -------------------------------------------------------------------------------- /src/test/run_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/run_test.ml -------------------------------------------------------------------------------- /src/test/unif_test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/unif_test.ml -------------------------------------------------------------------------------- /src/test/unif_test.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/test/unif_test.mli -------------------------------------------------------------------------------- /src/util/arith.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/arith.ml -------------------------------------------------------------------------------- /src/util/arith.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/arith.mli -------------------------------------------------------------------------------- /src/util/backtrack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/backtrack.ml -------------------------------------------------------------------------------- /src/util/backtrack.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/backtrack.mli -------------------------------------------------------------------------------- /src/util/comparison.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/comparison.ml -------------------------------------------------------------------------------- /src/util/comparison.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/comparison.mli -------------------------------------------------------------------------------- /src/util/escape.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/escape.ml -------------------------------------------------------------------------------- /src/util/escape.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/escape.mli -------------------------------------------------------------------------------- /src/util/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/util.ml -------------------------------------------------------------------------------- /src/util/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/src/util/util.mli -------------------------------------------------------------------------------- /static/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/static/Makefile -------------------------------------------------------------------------------- /static/cc.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/static/cc.dk -------------------------------------------------------------------------------- /static/classical.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/static/classical.dk -------------------------------------------------------------------------------- /static/dk_logic.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/static/dk_logic.dk -------------------------------------------------------------------------------- /static/epsilon.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/static/epsilon.dk -------------------------------------------------------------------------------- /static/logic.dk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/static/logic.dk -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/Makefile.shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/Makefile.shared -------------------------------------------------------------------------------- /tests/bugs/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/bugs/Makefile.prove -------------------------------------------------------------------------------- /tests/bugs/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/bugs/Makefile.solve -------------------------------------------------------------------------------- /tests/bugs/eq_diamond2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/bugs/eq_diamond2.smt2 -------------------------------------------------------------------------------- /tests/bugs/eq_diamond20.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/bugs/eq_diamond20.smt2 -------------------------------------------------------------------------------- /tests/bugs/list1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/bugs/list1.smt2 -------------------------------------------------------------------------------- /tests/bugs/list_poly.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/bugs/list_poly.p -------------------------------------------------------------------------------- /tests/clauses/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/clauses/Makefile.prove -------------------------------------------------------------------------------- /tests/clauses/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/clauses/Makefile.solve -------------------------------------------------------------------------------- /tests/clauses/clause_1.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/clauses/clause_1.cnf -------------------------------------------------------------------------------- /tests/clauses/clause_2.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/clauses/clause_2.cnf -------------------------------------------------------------------------------- /tests/david/contraction.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/david/contraction.p -------------------------------------------------------------------------------- /tests/david/david01.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/david/david01.p -------------------------------------------------------------------------------- /tests/equality/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/Makefile.prove -------------------------------------------------------------------------------- /tests/equality/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/Makefile.solve -------------------------------------------------------------------------------- /tests/equality/eq-fun_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-fun_1.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-fun_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-fun_2.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-fun_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-fun_3.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-fun_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-fun_4.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-fun_5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-fun_5.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-fun_6.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-fun_6.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-pred_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-pred_1.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-refl_1.smt2: -------------------------------------------------------------------------------- 1 | (assert (not (= a a))) 2 | (check-sat) 3 | -------------------------------------------------------------------------------- /tests/equality/eq-sym_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-sym_1.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-sym_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-sym_2.p -------------------------------------------------------------------------------- /tests/equality/eq-trans_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-trans_1.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-trans_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-trans_2.smt2 -------------------------------------------------------------------------------- /tests/equality/eq-trans_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/equality/eq-trans_3.smt2 -------------------------------------------------------------------------------- /tests/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/Makefile -------------------------------------------------------------------------------- /tests/include/ax_1.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/ax_1.ax -------------------------------------------------------------------------------- /tests/include/ax_2.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/ax_2.ax -------------------------------------------------------------------------------- /tests/include/ax_3.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/ax_3.ax -------------------------------------------------------------------------------- /tests/include/test_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/test_1.p -------------------------------------------------------------------------------- /tests/include/test_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/test_2.p -------------------------------------------------------------------------------- /tests/include/test_3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/include/test_3.p -------------------------------------------------------------------------------- /tests/logic/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/Makefile.prove -------------------------------------------------------------------------------- /tests/logic/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/Makefile.solve -------------------------------------------------------------------------------- /tests/logic/and_1.smt2: -------------------------------------------------------------------------------- 1 | (assert (and (or a b) false (not b))) 2 | (check-sat) 3 | -------------------------------------------------------------------------------- /tests/logic/and_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/and_2.smt2 -------------------------------------------------------------------------------- /tests/logic/and_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/and_3.smt2 -------------------------------------------------------------------------------- /tests/logic/and_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/and_4.smt2 -------------------------------------------------------------------------------- /tests/logic/and_5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/and_5.smt2 -------------------------------------------------------------------------------- /tests/logic/equiv_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/equiv_1.p -------------------------------------------------------------------------------- /tests/logic/equiv_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/equiv_2.p -------------------------------------------------------------------------------- /tests/logic/imply_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_1.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_2.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_3.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_4.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_5.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_6.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_6.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_7.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_7.smt2 -------------------------------------------------------------------------------- /tests/logic/imply_8.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/imply_8.smt2 -------------------------------------------------------------------------------- /tests/logic/not-and_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-and_1.smt2 -------------------------------------------------------------------------------- /tests/logic/not-and_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-and_2.smt2 -------------------------------------------------------------------------------- /tests/logic/not-and_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-and_3.smt2 -------------------------------------------------------------------------------- /tests/logic/not-and_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-and_4.smt2 -------------------------------------------------------------------------------- /tests/logic/not-and_5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-and_5.smt2 -------------------------------------------------------------------------------- /tests/logic/not-equiv_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-equiv_1.p -------------------------------------------------------------------------------- /tests/logic/not-equiv_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-equiv_2.p -------------------------------------------------------------------------------- /tests/logic/not-imply_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-imply_1.smt2 -------------------------------------------------------------------------------- /tests/logic/not-imply_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-imply_2.smt2 -------------------------------------------------------------------------------- /tests/logic/not-imply_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-imply_3.smt2 -------------------------------------------------------------------------------- /tests/logic/not-imply_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-imply_4.smt2 -------------------------------------------------------------------------------- /tests/logic/not-or_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-or_1.smt2 -------------------------------------------------------------------------------- /tests/logic/not-or_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-or_2.smt2 -------------------------------------------------------------------------------- /tests/logic/not-or_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-or_3.smt2 -------------------------------------------------------------------------------- /tests/logic/not-or_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-or_4.smt2 -------------------------------------------------------------------------------- /tests/logic/not-or_5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/not-or_5.smt2 -------------------------------------------------------------------------------- /tests/logic/or_1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/or_1.smt2 -------------------------------------------------------------------------------- /tests/logic/or_2.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/or_2.smt2 -------------------------------------------------------------------------------- /tests/logic/or_3.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/or_3.smt2 -------------------------------------------------------------------------------- /tests/logic/or_4.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/or_4.smt2 -------------------------------------------------------------------------------- /tests/logic/or_5.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/logic/or_5.smt2 -------------------------------------------------------------------------------- /tests/parsing/Axioms/SYN000+0.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Axioms/SYN000+0.ax -------------------------------------------------------------------------------- /tests/parsing/Axioms/SYN000-0.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Axioms/SYN000-0.ax -------------------------------------------------------------------------------- /tests/parsing/Axioms/SYN000^0.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Axioms/SYN000^0.ax -------------------------------------------------------------------------------- /tests/parsing/Axioms/SYN000_0.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Axioms/SYN000_0.ax -------------------------------------------------------------------------------- /tests/parsing/Axioms/SYN001-0.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Axioms/SYN001-0.ax -------------------------------------------------------------------------------- /tests/parsing/Axioms/SYN002+0.ax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Axioms/SYN002+0.ax -------------------------------------------------------------------------------- /tests/parsing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/Makefile -------------------------------------------------------------------------------- /tests/parsing/SYN000+1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000+1.p -------------------------------------------------------------------------------- /tests/parsing/SYN000+2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000+2.p -------------------------------------------------------------------------------- /tests/parsing/SYN000-1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000-1.p -------------------------------------------------------------------------------- /tests/parsing/SYN000-2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000-2.p -------------------------------------------------------------------------------- /tests/parsing/SYN000=2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000=2.p -------------------------------------------------------------------------------- /tests/parsing/SYN000^1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000^1.p -------------------------------------------------------------------------------- /tests/parsing/SYN000^2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000^2.p -------------------------------------------------------------------------------- /tests/parsing/SYN000_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000_1.p -------------------------------------------------------------------------------- /tests/parsing/SYN000_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/parsing/SYN000_2.p -------------------------------------------------------------------------------- /tests/poly/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/Makefile.prove -------------------------------------------------------------------------------- /tests/poly/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/Makefile.solve -------------------------------------------------------------------------------- /tests/poly/exists_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/exists_1.p -------------------------------------------------------------------------------- /tests/poly/exists_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/exists_2.p -------------------------------------------------------------------------------- /tests/poly/forall_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/forall_1.p -------------------------------------------------------------------------------- /tests/poly/forall_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/forall_2.p -------------------------------------------------------------------------------- /tests/poly/not-exists_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/not-exists_1.p -------------------------------------------------------------------------------- /tests/poly/not-exists_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/not-exists_2.p -------------------------------------------------------------------------------- /tests/poly/not-forall_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/not-forall_1.p -------------------------------------------------------------------------------- /tests/poly/not-forall_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/poly/not-forall_2.p -------------------------------------------------------------------------------- /tests/quant/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/Makefile.prove -------------------------------------------------------------------------------- /tests/quant/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/Makefile.solve -------------------------------------------------------------------------------- /tests/quant/exists_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/exists_1.p -------------------------------------------------------------------------------- /tests/quant/exists_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/exists_2.p -------------------------------------------------------------------------------- /tests/quant/exists_3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/exists_3.p -------------------------------------------------------------------------------- /tests/quant/exists_4.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/exists_4.p -------------------------------------------------------------------------------- /tests/quant/exists_5.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/exists_5.p -------------------------------------------------------------------------------- /tests/quant/exists_6.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/exists_6.p -------------------------------------------------------------------------------- /tests/quant/forall_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_1.p -------------------------------------------------------------------------------- /tests/quant/forall_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_2.p -------------------------------------------------------------------------------- /tests/quant/forall_3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_3.p -------------------------------------------------------------------------------- /tests/quant/forall_4.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_4.p -------------------------------------------------------------------------------- /tests/quant/forall_5.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_5.p -------------------------------------------------------------------------------- /tests/quant/forall_6.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_6.p -------------------------------------------------------------------------------- /tests/quant/forall_7.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/forall_7.p -------------------------------------------------------------------------------- /tests/quant/inst_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/inst_1.p -------------------------------------------------------------------------------- /tests/quant/inst_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/inst_2.p -------------------------------------------------------------------------------- /tests/quant/inst_3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/inst_3.p -------------------------------------------------------------------------------- /tests/quant/inst_4.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/inst_4.p -------------------------------------------------------------------------------- /tests/quant/inst_5.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/inst_5.p -------------------------------------------------------------------------------- /tests/quant/inst_6.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/inst_6.p -------------------------------------------------------------------------------- /tests/quant/not-exists_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-exists_1.p -------------------------------------------------------------------------------- /tests/quant/not-exists_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-exists_2.p -------------------------------------------------------------------------------- /tests/quant/not-exists_3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-exists_3.p -------------------------------------------------------------------------------- /tests/quant/not-exists_4.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-exists_4.p -------------------------------------------------------------------------------- /tests/quant/not-exists_5.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-exists_5.p -------------------------------------------------------------------------------- /tests/quant/not-exists_6.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-exists_6.p -------------------------------------------------------------------------------- /tests/quant/not-forall_1.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-forall_1.p -------------------------------------------------------------------------------- /tests/quant/not-forall_2.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-forall_2.p -------------------------------------------------------------------------------- /tests/quant/not-forall_3.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/quant/not-forall_3.p -------------------------------------------------------------------------------- /tests/rewr/Makefile.prove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/Makefile.prove -------------------------------------------------------------------------------- /tests/rewr/Makefile.solve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/Makefile.solve -------------------------------------------------------------------------------- /tests/rewr/array_get_1.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/array_get_1.zf -------------------------------------------------------------------------------- /tests/rewr/array_get_2.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/array_get_2.zf -------------------------------------------------------------------------------- /tests/rewr/array_get_3.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/array_get_3.zf -------------------------------------------------------------------------------- /tests/rewr/axioms/array.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/axioms/array.zf -------------------------------------------------------------------------------- /tests/rewr/axioms/bset.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/axioms/bset.zf -------------------------------------------------------------------------------- /tests/rewr/diff_empty.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/diff_empty.zf -------------------------------------------------------------------------------- /tests/rewr/eq_1.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/eq_1.zf -------------------------------------------------------------------------------- /tests/rewr/eq_2.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/eq_2.zf -------------------------------------------------------------------------------- /tests/rewr/list1.smt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/list1.smt2 -------------------------------------------------------------------------------- /tests/rewr/subset_reflexivity.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/rewr/subset_reflexivity.zf -------------------------------------------------------------------------------- /tests/typing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/typing/Makefile -------------------------------------------------------------------------------- /tests/typing/unify_01.zf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tests/typing/unify_01.zf -------------------------------------------------------------------------------- /tools/flamegraph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tools/flamegraph.sh -------------------------------------------------------------------------------- /tools/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gbury/archsat/HEAD/tools/profile.sh --------------------------------------------------------------------------------