├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── Makefile.coq.local ├── README.md ├── _CoqProject ├── docs ├── coqdoc │ ├── .gitignore │ └── resources │ │ └── github-pandoc.css └── index.md ├── generate_deps.pl ├── opam └── theories ├── Algorithmic ├── AlgorithmicTypingProperties.v ├── Bundled.v ├── Strengthening.v ├── TypedConvInstances.v ├── TypedConvPER.v ├── TypedConvProperties.v ├── UntypedConvSoundness.v └── UntypedTypedConv.v ├── AlgorithmicJudgments.v ├── AutoSubst ├── Ast.sig ├── Ast.v ├── Ast_preamble ├── Extra.v ├── core.v └── unscoped.v ├── Checkers ├── Completeness.v ├── CtxAccessCorrectness.v ├── Functions.v ├── NegativeSoundness.v ├── ReductionCorrectness.v ├── Soundness.v ├── Termination.v ├── UntypedCompleteness.v ├── UntypedNegativeSoundness.v ├── UntypedTermination.v └── Views.v ├── Decidability.v ├── DeclarativeTyping.v ├── Execution.v ├── Fundamental.v ├── GenericTyping.v ├── LogicalRelation.v ├── LogicalRelation ├── Definition │ ├── Def.v │ ├── Empty.v │ ├── Helper.v │ ├── Id.v │ ├── Nat.v │ ├── Ne.v │ ├── Pi.v │ ├── Poly.v │ ├── Prelude.v │ ├── Sig.v │ └── Universe.v ├── Escape.v ├── Induction.v ├── InstKripke.v ├── Introductions │ ├── Application.v │ ├── Empty.v │ ├── Id.v │ ├── Nat.v │ ├── Pi.v │ ├── Poly.v │ ├── Sigma.v │ ├── SimpleArr.v │ └── Universe.v ├── Irrelevance.v ├── LRTactics.v ├── Neutral.v ├── NormalRed.v ├── Properties.v ├── Reduction.v ├── Symmetry.v ├── Transitivity.v └── Weakening.v ├── Misc └── Positivity.v ├── Notations.v ├── PERTactics.v ├── Syntax ├── All.v ├── BasicAst.v ├── Context.v ├── NormalForms.v ├── Sections.v ├── TermNotations.v ├── UntypedReduction.v └── Weakening.v ├── TypingProperties ├── DeclarativeProperties.v ├── LogRelConsequences.v ├── NeutralConvProperties.v ├── NormalisationConsequences.v ├── NormalisationDefinition.v ├── PropertiesDefinition.v ├── SubstConsequences.v └── TypeInjectivityConsequences.v ├── Utils.v └── Validity ├── Introductions ├── Application.v ├── Empty.v ├── Id.v ├── Lambda.v ├── Nat.v ├── Pi.v ├── Poly.v ├── Sigma.v ├── SimpleArr.v ├── Universe.v └── Var.v ├── Irrelevance.v ├── Properties.v ├── Validity.v └── ValidityTactics.v /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.coq.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/Makefile.coq.local -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/_CoqProject -------------------------------------------------------------------------------- /docs/coqdoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.html -------------------------------------------------------------------------------- /docs/coqdoc/resources/github-pandoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/docs/coqdoc/resources/github-pandoc.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/docs/index.md -------------------------------------------------------------------------------- /generate_deps.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/generate_deps.pl -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/opam -------------------------------------------------------------------------------- /theories/Algorithmic/AlgorithmicTypingProperties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/AlgorithmicTypingProperties.v -------------------------------------------------------------------------------- /theories/Algorithmic/Bundled.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/Bundled.v -------------------------------------------------------------------------------- /theories/Algorithmic/Strengthening.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/Strengthening.v -------------------------------------------------------------------------------- /theories/Algorithmic/TypedConvInstances.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/TypedConvInstances.v -------------------------------------------------------------------------------- /theories/Algorithmic/TypedConvPER.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/TypedConvPER.v -------------------------------------------------------------------------------- /theories/Algorithmic/TypedConvProperties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/TypedConvProperties.v -------------------------------------------------------------------------------- /theories/Algorithmic/UntypedConvSoundness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/UntypedConvSoundness.v -------------------------------------------------------------------------------- /theories/Algorithmic/UntypedTypedConv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Algorithmic/UntypedTypedConv.v -------------------------------------------------------------------------------- /theories/AlgorithmicJudgments.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AlgorithmicJudgments.v -------------------------------------------------------------------------------- /theories/AutoSubst/Ast.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AutoSubst/Ast.sig -------------------------------------------------------------------------------- /theories/AutoSubst/Ast.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AutoSubst/Ast.v -------------------------------------------------------------------------------- /theories/AutoSubst/Ast_preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AutoSubst/Ast_preamble -------------------------------------------------------------------------------- /theories/AutoSubst/Extra.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AutoSubst/Extra.v -------------------------------------------------------------------------------- /theories/AutoSubst/core.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AutoSubst/core.v -------------------------------------------------------------------------------- /theories/AutoSubst/unscoped.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/AutoSubst/unscoped.v -------------------------------------------------------------------------------- /theories/Checkers/Completeness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/Completeness.v -------------------------------------------------------------------------------- /theories/Checkers/CtxAccessCorrectness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/CtxAccessCorrectness.v -------------------------------------------------------------------------------- /theories/Checkers/Functions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/Functions.v -------------------------------------------------------------------------------- /theories/Checkers/NegativeSoundness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/NegativeSoundness.v -------------------------------------------------------------------------------- /theories/Checkers/ReductionCorrectness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/ReductionCorrectness.v -------------------------------------------------------------------------------- /theories/Checkers/Soundness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/Soundness.v -------------------------------------------------------------------------------- /theories/Checkers/Termination.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/Termination.v -------------------------------------------------------------------------------- /theories/Checkers/UntypedCompleteness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/UntypedCompleteness.v -------------------------------------------------------------------------------- /theories/Checkers/UntypedNegativeSoundness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/UntypedNegativeSoundness.v -------------------------------------------------------------------------------- /theories/Checkers/UntypedTermination.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/UntypedTermination.v -------------------------------------------------------------------------------- /theories/Checkers/Views.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Checkers/Views.v -------------------------------------------------------------------------------- /theories/Decidability.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Decidability.v -------------------------------------------------------------------------------- /theories/DeclarativeTyping.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/DeclarativeTyping.v -------------------------------------------------------------------------------- /theories/Execution.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Execution.v -------------------------------------------------------------------------------- /theories/Fundamental.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Fundamental.v -------------------------------------------------------------------------------- /theories/GenericTyping.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/GenericTyping.v -------------------------------------------------------------------------------- /theories/LogicalRelation.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Def.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Def.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Empty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Empty.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Helper.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Helper.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Id.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Id.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Nat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Nat.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Ne.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Ne.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Pi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Pi.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Poly.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Poly.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Prelude.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Prelude.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Sig.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Sig.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Definition/Universe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Definition/Universe.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Escape.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Escape.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Induction.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Induction.v -------------------------------------------------------------------------------- /theories/LogicalRelation/InstKripke.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/InstKripke.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Application.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Application.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Empty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Empty.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Id.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Id.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Nat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Nat.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Pi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Pi.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Poly.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Poly.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Sigma.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Sigma.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/SimpleArr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/SimpleArr.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Introductions/Universe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Introductions/Universe.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Irrelevance.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Irrelevance.v -------------------------------------------------------------------------------- /theories/LogicalRelation/LRTactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/LRTactics.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Neutral.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Neutral.v -------------------------------------------------------------------------------- /theories/LogicalRelation/NormalRed.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/NormalRed.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Properties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Properties.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Reduction.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Reduction.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Symmetry.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Symmetry.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Transitivity.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Transitivity.v -------------------------------------------------------------------------------- /theories/LogicalRelation/Weakening.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/LogicalRelation/Weakening.v -------------------------------------------------------------------------------- /theories/Misc/Positivity.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Misc/Positivity.v -------------------------------------------------------------------------------- /theories/Notations.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Notations.v -------------------------------------------------------------------------------- /theories/PERTactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/PERTactics.v -------------------------------------------------------------------------------- /theories/Syntax/All.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/All.v -------------------------------------------------------------------------------- /theories/Syntax/BasicAst.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/BasicAst.v -------------------------------------------------------------------------------- /theories/Syntax/Context.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/Context.v -------------------------------------------------------------------------------- /theories/Syntax/NormalForms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/NormalForms.v -------------------------------------------------------------------------------- /theories/Syntax/Sections.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/Sections.v -------------------------------------------------------------------------------- /theories/Syntax/TermNotations.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/TermNotations.v -------------------------------------------------------------------------------- /theories/Syntax/UntypedReduction.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/UntypedReduction.v -------------------------------------------------------------------------------- /theories/Syntax/Weakening.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Syntax/Weakening.v -------------------------------------------------------------------------------- /theories/TypingProperties/DeclarativeProperties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/DeclarativeProperties.v -------------------------------------------------------------------------------- /theories/TypingProperties/LogRelConsequences.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/LogRelConsequences.v -------------------------------------------------------------------------------- /theories/TypingProperties/NeutralConvProperties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/NeutralConvProperties.v -------------------------------------------------------------------------------- /theories/TypingProperties/NormalisationConsequences.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/NormalisationConsequences.v -------------------------------------------------------------------------------- /theories/TypingProperties/NormalisationDefinition.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/NormalisationDefinition.v -------------------------------------------------------------------------------- /theories/TypingProperties/PropertiesDefinition.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/PropertiesDefinition.v -------------------------------------------------------------------------------- /theories/TypingProperties/SubstConsequences.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/SubstConsequences.v -------------------------------------------------------------------------------- /theories/TypingProperties/TypeInjectivityConsequences.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/TypingProperties/TypeInjectivityConsequences.v -------------------------------------------------------------------------------- /theories/Utils.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Utils.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Application.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Application.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Empty.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Empty.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Id.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Id.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Lambda.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Lambda.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Nat.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Nat.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Pi.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Pi.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Poly.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Poly.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Sigma.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Sigma.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/SimpleArr.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/SimpleArr.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Universe.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Universe.v -------------------------------------------------------------------------------- /theories/Validity/Introductions/Var.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Introductions/Var.v -------------------------------------------------------------------------------- /theories/Validity/Irrelevance.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Irrelevance.v -------------------------------------------------------------------------------- /theories/Validity/Properties.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Properties.v -------------------------------------------------------------------------------- /theories/Validity/Validity.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/Validity.v -------------------------------------------------------------------------------- /theories/Validity/ValidityTactics.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoqHott/logrel-coq/HEAD/theories/Validity/ValidityTactics.v --------------------------------------------------------------------------------