├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── _static └── favicon.ico ├── _templates └── navigation_without_header.html ├── axioms_and_computation.rst ├── conf.py ├── dependent_type_theory.rst ├── deploy.sh ├── index.rst ├── induction_and_recursion.rst ├── inductive_types.rst ├── interacting_with_lean.rst ├── introduction.rst ├── lean_sphinx.py ├── leanpkg.toml ├── propositions_and_proofs.rst ├── quantifiers_and_equality.rst ├── structures_and_records.rst ├── tactics.rst ├── type_classes.rst └── unixode.sty /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/README.md -------------------------------------------------------------------------------- /_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/_static/favicon.ico -------------------------------------------------------------------------------- /_templates/navigation_without_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/_templates/navigation_without_header.html -------------------------------------------------------------------------------- /axioms_and_computation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/axioms_and_computation.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/conf.py -------------------------------------------------------------------------------- /dependent_type_theory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/dependent_type_theory.rst -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/deploy.sh -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/index.rst -------------------------------------------------------------------------------- /induction_and_recursion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/induction_and_recursion.rst -------------------------------------------------------------------------------- /inductive_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/inductive_types.rst -------------------------------------------------------------------------------- /interacting_with_lean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/interacting_with_lean.rst -------------------------------------------------------------------------------- /introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/introduction.rst -------------------------------------------------------------------------------- /lean_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/lean_sphinx.py -------------------------------------------------------------------------------- /leanpkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/leanpkg.toml -------------------------------------------------------------------------------- /propositions_and_proofs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/propositions_and_proofs.rst -------------------------------------------------------------------------------- /quantifiers_and_equality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/quantifiers_and_equality.rst -------------------------------------------------------------------------------- /structures_and_records.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/structures_and_records.rst -------------------------------------------------------------------------------- /tactics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/tactics.rst -------------------------------------------------------------------------------- /type_classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/type_classes.rst -------------------------------------------------------------------------------- /unixode.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanprover/theorem_proving_in_lean/HEAD/unixode.sty --------------------------------------------------------------------------------