├── .agda-lib ├── .github ├── dependabot.yml └── workflows │ └── ci-ubuntu.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── assets ├── Agda.css ├── _config.yml ├── images │ ├── bg_hr.png │ ├── blacktocat.png │ ├── icon_download.png │ ├── sprite_download.png │ ├── vdi_blue.png │ └── vdi_grey.png ├── include.html ├── process.py └── styling.css └── src ├── CLayered ├── Presheaf.agda ├── README.agda └── Typ.agda ├── Layered ├── Presheaf.agda ├── README.agda └── Typ.agda ├── Lib.agda ├── LibNonEmpty.agda ├── MLTT ├── Completeness.agda ├── Completeness │ ├── Consequences.agda │ ├── Contexts.agda │ ├── Fundamental.agda │ ├── LogRel.agda │ ├── Nat.agda │ ├── Pi.agda │ ├── Substitutions.agda │ ├── Terms.agda │ └── Universe.agda ├── Consequences.agda ├── README.agda ├── Semantics │ ├── Domain.agda │ ├── Evaluation.agda │ ├── PER.agda │ ├── Properties │ │ ├── PER.agda │ │ └── PER │ │ │ └── Core.agda │ ├── Readback.agda │ └── Realizability.agda ├── Soundness.agda ├── Soundness │ ├── Contexts.agda │ ├── Cumulativity.agda │ ├── Equiv.agda │ ├── Fundamental.agda │ ├── LogRel.agda │ ├── Nat.agda │ ├── Pi.agda │ ├── Properties │ │ ├── LogRel.agda │ │ ├── NoFunExt │ │ │ └── LogRel.agda │ │ └── Substitutions.agda │ ├── Realizability.agda │ ├── Substitutions.agda │ ├── Terms.agda │ ├── ToSyntax.agda │ ├── Typing.agda │ ├── Universe.agda │ └── Weakening.agda ├── Statics.agda └── Statics │ ├── Concise.agda │ ├── CtxEquiv.agda │ ├── Equiv.agda │ ├── Full.agda │ ├── Misc.agda │ ├── PER.agda │ ├── Presup.agda │ ├── Properties.agda │ ├── Properties │ ├── Contexts.agda │ ├── Pi.agda │ └── Subst.agda │ ├── Refl.agda │ └── Syntax.agda ├── Minimal ├── PER.agda ├── README.agda ├── Soundness.agda ├── StaticProps.agda ├── Statics.agda └── TypedSem.agda ├── Mint ├── Completeness.agda ├── Completeness │ ├── Box.agda │ ├── Consequences.agda │ ├── Contexts.agda │ ├── Fundamental.agda │ ├── LogRel.agda │ ├── Nat.agda │ ├── Pi.agda │ ├── Substitutions.agda │ ├── Terms.agda │ └── Universe.agda ├── Consequences.agda ├── Example.agda ├── README.agda ├── Semantics │ ├── Domain.agda │ ├── Evaluation.agda │ ├── PER.agda │ ├── Properties │ │ ├── Domain.agda │ │ ├── Evaluation.agda │ │ ├── NoFunExt │ │ │ ├── Domain.agda │ │ │ └── Evaluation.agda │ │ ├── PER.agda │ │ └── PER │ │ │ └── Core.agda │ ├── Readback.agda │ └── Realizability.agda ├── Soundness.agda ├── Soundness │ ├── Box.agda │ ├── Contexts.agda │ ├── Cumulativity.agda │ ├── Equiv.agda │ ├── Fundamental.agda │ ├── LogRel.agda │ ├── Nat.agda │ ├── Pi.agda │ ├── Properties │ │ ├── LogRel.agda │ │ ├── Mt.agda │ │ ├── NoFunExt │ │ │ ├── LogRel.agda │ │ │ └── Mt.agda │ │ └── Substitutions.agda │ ├── Realizability.agda │ ├── Restricted.agda │ ├── Substitutions.agda │ ├── Terms.agda │ ├── ToSyntax.agda │ ├── Typing.agda │ └── Universe.agda ├── Statics.agda └── Statics │ ├── Concise.agda │ ├── CtxEquiv.agda │ ├── Equiv.agda │ ├── Full.agda │ ├── Misc.agda │ ├── PER.agda │ ├── Presup.agda │ ├── Properties.agda │ ├── Properties │ ├── Box.agda │ ├── Contexts.agda │ ├── Ops.agda │ ├── Pi.agda │ └── Substs.agda │ ├── Refl.agda │ └── Syntax.agda ├── NonCumulative ├── Ascribed │ ├── Completeness.agda │ ├── Completeness │ │ ├── Consequences.agda │ │ ├── Contexts.agda │ │ ├── Fundamental.agda │ │ ├── Lift.agda │ │ ├── LogRel.agda │ │ ├── Nat.agda │ │ ├── Pi.agda │ │ ├── Substitutions.agda │ │ ├── Terms.agda │ │ └── Universe.agda │ ├── Consequences.agda │ ├── Semantics │ │ ├── Domain.agda │ │ ├── Evaluation.agda │ │ ├── PER.agda │ │ ├── Properties │ │ │ ├── PER.agda │ │ │ └── PER │ │ │ │ └── Core.agda │ │ ├── Readback.agda │ │ └── Realizability.agda │ ├── Soundness.agda │ ├── Soundness │ │ ├── Contexts.agda │ │ ├── Fundamental.agda │ │ ├── LogRel.agda │ │ ├── Nat.agda │ │ ├── Pi.agda │ │ ├── Properties │ │ │ ├── Bundle.agda │ │ │ ├── LogRel.agda │ │ │ ├── NoFunExt │ │ │ │ └── LogRel.agda │ │ │ └── Substitutions.agda │ │ ├── Realizability.agda │ │ ├── Substitutions.agda │ │ ├── Terms.agda │ │ ├── ToSyntax.agda │ │ ├── Universe.agda │ │ └── Weakening.agda │ └── Statics │ │ ├── CtxEquiv.agda │ │ ├── Full.agda │ │ ├── Inversion.agda │ │ ├── Misc.agda │ │ ├── PER.agda │ │ ├── Presup.agda │ │ ├── Properties.agda │ │ ├── Properties │ │ ├── Contexts.agda │ │ └── Subst.agda │ │ ├── Refl.agda │ │ ├── Simpl.agda │ │ └── Syntax.agda ├── README.agda └── Unascribed │ ├── Properties │ ├── Equivalence │ │ ├── Completeness.agda │ │ ├── Consequences.agda │ │ └── Soundness.agda │ └── NbE │ │ ├── Completeness.agda │ │ ├── Soundness.agda │ │ └── Totality.agda │ ├── Semantics │ ├── Domain.agda │ ├── Evaluation.agda │ ├── Readback.agda │ └── Transfer.agda │ └── Statics │ ├── Full.agda │ ├── Syntax.agda │ └── Transfer.agda ├── README.agda ├── STLC ├── Dynamics.agda ├── NbE.agda ├── README.agda └── Statics.agda ├── T ├── PER.agda ├── README.agda ├── Semantics.agda ├── Soundness.agda ├── StaticProps.agda ├── Statics.agda ├── Strict.agda └── TypedSem.agda ├── Unbox ├── Gluing.agda ├── GluingProps.agda ├── PER.agda ├── Presheaf.agda ├── README.agda ├── Restricted.agda ├── SemanticProps.agda ├── Semantics.agda ├── Soundness.agda ├── StaticProps.agda ├── Statics.agda └── Typ.agda └── Weakening.agda /.agda-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/.agda-lib -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/.github/workflows/ci-ubuntu.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.agdai 2 | MAlonzo/ 3 | *.~undo-tree~ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/README.md -------------------------------------------------------------------------------- /assets/Agda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/Agda.css -------------------------------------------------------------------------------- /assets/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/_config.yml -------------------------------------------------------------------------------- /assets/images/bg_hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/images/bg_hr.png -------------------------------------------------------------------------------- /assets/images/blacktocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/images/blacktocat.png -------------------------------------------------------------------------------- /assets/images/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/images/icon_download.png -------------------------------------------------------------------------------- /assets/images/sprite_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/images/sprite_download.png -------------------------------------------------------------------------------- /assets/images/vdi_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/images/vdi_blue.png -------------------------------------------------------------------------------- /assets/images/vdi_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/images/vdi_grey.png -------------------------------------------------------------------------------- /assets/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/include.html -------------------------------------------------------------------------------- /assets/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/process.py -------------------------------------------------------------------------------- /assets/styling.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/assets/styling.css -------------------------------------------------------------------------------- /src/CLayered/Presheaf.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/CLayered/Presheaf.agda -------------------------------------------------------------------------------- /src/CLayered/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/CLayered/README.agda -------------------------------------------------------------------------------- /src/CLayered/Typ.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/CLayered/Typ.agda -------------------------------------------------------------------------------- /src/Layered/Presheaf.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Layered/Presheaf.agda -------------------------------------------------------------------------------- /src/Layered/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Layered/README.agda -------------------------------------------------------------------------------- /src/Layered/Typ.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Layered/Typ.agda -------------------------------------------------------------------------------- /src/Lib.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Lib.agda -------------------------------------------------------------------------------- /src/LibNonEmpty.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/LibNonEmpty.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Consequences.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Contexts.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Fundamental.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Fundamental.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/LogRel.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Nat.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Pi.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Substitutions.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Terms.agda -------------------------------------------------------------------------------- /src/MLTT/Completeness/Universe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Completeness/Universe.agda -------------------------------------------------------------------------------- /src/MLTT/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Consequences.agda -------------------------------------------------------------------------------- /src/MLTT/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/README.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/Domain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/Domain.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/Evaluation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/Evaluation.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/PER.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/Properties/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/Properties/PER.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/Properties/PER/Core.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/Properties/PER/Core.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/Readback.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/Readback.agda -------------------------------------------------------------------------------- /src/MLTT/Semantics/Realizability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Semantics/Realizability.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Contexts.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Cumulativity.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Cumulativity.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Equiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Equiv.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Fundamental.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Fundamental.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/LogRel.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Nat.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Pi.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Properties/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Properties/LogRel.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Properties/NoFunExt/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Properties/NoFunExt/LogRel.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Properties/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Properties/Substitutions.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Realizability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Realizability.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Substitutions.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Terms.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/ToSyntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/ToSyntax.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Typing.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Typing.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Universe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Universe.agda -------------------------------------------------------------------------------- /src/MLTT/Soundness/Weakening.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Soundness/Weakening.agda -------------------------------------------------------------------------------- /src/MLTT/Statics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Concise.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Concise.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/CtxEquiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/CtxEquiv.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Equiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Equiv.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Full.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Full.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Misc.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Misc.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/PER.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Presup.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Presup.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Properties.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Properties.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Properties/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Properties/Contexts.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Properties/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Properties/Pi.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Properties/Subst.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Properties/Subst.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Refl.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Refl.agda -------------------------------------------------------------------------------- /src/MLTT/Statics/Syntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/MLTT/Statics/Syntax.agda -------------------------------------------------------------------------------- /src/Minimal/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Minimal/PER.agda -------------------------------------------------------------------------------- /src/Minimal/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Minimal/README.agda -------------------------------------------------------------------------------- /src/Minimal/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Minimal/Soundness.agda -------------------------------------------------------------------------------- /src/Minimal/StaticProps.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Minimal/StaticProps.agda -------------------------------------------------------------------------------- /src/Minimal/Statics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Minimal/Statics.agda -------------------------------------------------------------------------------- /src/Minimal/TypedSem.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Minimal/TypedSem.agda -------------------------------------------------------------------------------- /src/Mint/Completeness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Box.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Box.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Consequences.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Contexts.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Fundamental.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Fundamental.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/LogRel.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Nat.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Pi.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Substitutions.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Terms.agda -------------------------------------------------------------------------------- /src/Mint/Completeness/Universe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Completeness/Universe.agda -------------------------------------------------------------------------------- /src/Mint/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Consequences.agda -------------------------------------------------------------------------------- /src/Mint/Example.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Example.agda -------------------------------------------------------------------------------- /src/Mint/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/README.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Domain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Domain.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Evaluation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Evaluation.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/PER.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Properties/Domain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Properties/Domain.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Properties/Evaluation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Properties/Evaluation.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Properties/NoFunExt/Domain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Properties/NoFunExt/Domain.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Properties/NoFunExt/Evaluation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Properties/NoFunExt/Evaluation.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Properties/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Properties/PER.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Properties/PER/Core.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Properties/PER/Core.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Readback.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Readback.agda -------------------------------------------------------------------------------- /src/Mint/Semantics/Realizability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Semantics/Realizability.agda -------------------------------------------------------------------------------- /src/Mint/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Box.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Box.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Contexts.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Cumulativity.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Cumulativity.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Equiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Equiv.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Fundamental.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Fundamental.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/LogRel.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Nat.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Pi.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Properties/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Properties/LogRel.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Properties/Mt.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Properties/Mt.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Properties/NoFunExt/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Properties/NoFunExt/LogRel.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Properties/NoFunExt/Mt.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Properties/NoFunExt/Mt.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Properties/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Properties/Substitutions.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Realizability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Realizability.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Restricted.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Restricted.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Substitutions.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Terms.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/ToSyntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/ToSyntax.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Typing.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Typing.agda -------------------------------------------------------------------------------- /src/Mint/Soundness/Universe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Soundness/Universe.agda -------------------------------------------------------------------------------- /src/Mint/Statics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Concise.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Concise.agda -------------------------------------------------------------------------------- /src/Mint/Statics/CtxEquiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/CtxEquiv.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Equiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Equiv.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Full.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Full.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Misc.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Misc.agda -------------------------------------------------------------------------------- /src/Mint/Statics/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/PER.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Presup.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Presup.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Properties.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Properties.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Properties/Box.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Properties/Box.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Properties/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Properties/Contexts.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Properties/Ops.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Properties/Ops.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Properties/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Properties/Pi.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Properties/Substs.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Properties/Substs.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Refl.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Refl.agda -------------------------------------------------------------------------------- /src/Mint/Statics/Syntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Mint/Statics/Syntax.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Consequences.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Contexts.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Fundamental.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Fundamental.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Lift.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Lift.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/LogRel.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Nat.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Pi.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Substitutions.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Terms.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Completeness/Universe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Completeness/Universe.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Consequences.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/Domain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/Domain.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/Evaluation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/Evaluation.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/PER.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/Properties/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/Properties/PER.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/Properties/PER/Core.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/Properties/PER/Core.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/Readback.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/Readback.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Semantics/Realizability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Semantics/Realizability.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Contexts.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Fundamental.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Fundamental.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/LogRel.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Nat.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Nat.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Pi.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Pi.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Properties/Bundle.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Properties/Bundle.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Properties/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Properties/LogRel.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Properties/NoFunExt/LogRel.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Properties/NoFunExt/LogRel.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Properties/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Properties/Substitutions.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Realizability.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Realizability.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Substitutions.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Substitutions.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Terms.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Terms.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/ToSyntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/ToSyntax.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Universe.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Universe.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Soundness/Weakening.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Soundness/Weakening.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/CtxEquiv.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/CtxEquiv.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Full.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Full.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Inversion.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Inversion.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Misc.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Misc.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/PER.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Presup.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Presup.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Properties.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Properties.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Properties/Contexts.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Properties/Contexts.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Properties/Subst.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Properties/Subst.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Refl.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Refl.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Simpl.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Simpl.agda -------------------------------------------------------------------------------- /src/NonCumulative/Ascribed/Statics/Syntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Ascribed/Statics/Syntax.agda -------------------------------------------------------------------------------- /src/NonCumulative/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/README.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Properties/Equivalence/Completeness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Properties/Equivalence/Completeness.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Properties/Equivalence/Consequences.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Properties/Equivalence/Consequences.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Properties/Equivalence/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Properties/Equivalence/Soundness.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Properties/NbE/Completeness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Properties/NbE/Completeness.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Properties/NbE/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Properties/NbE/Soundness.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Properties/NbE/Totality.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Properties/NbE/Totality.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Semantics/Domain.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Semantics/Domain.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Semantics/Evaluation.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Semantics/Evaluation.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Semantics/Readback.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Semantics/Readback.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Semantics/Transfer.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Semantics/Transfer.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Statics/Full.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Statics/Full.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Statics/Syntax.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Statics/Syntax.agda -------------------------------------------------------------------------------- /src/NonCumulative/Unascribed/Statics/Transfer.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/NonCumulative/Unascribed/Statics/Transfer.agda -------------------------------------------------------------------------------- /src/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/README.agda -------------------------------------------------------------------------------- /src/STLC/Dynamics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/STLC/Dynamics.agda -------------------------------------------------------------------------------- /src/STLC/NbE.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/STLC/NbE.agda -------------------------------------------------------------------------------- /src/STLC/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/STLC/README.agda -------------------------------------------------------------------------------- /src/STLC/Statics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/STLC/Statics.agda -------------------------------------------------------------------------------- /src/T/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/PER.agda -------------------------------------------------------------------------------- /src/T/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/README.agda -------------------------------------------------------------------------------- /src/T/Semantics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/Semantics.agda -------------------------------------------------------------------------------- /src/T/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/Soundness.agda -------------------------------------------------------------------------------- /src/T/StaticProps.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/StaticProps.agda -------------------------------------------------------------------------------- /src/T/Statics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/Statics.agda -------------------------------------------------------------------------------- /src/T/Strict.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/Strict.agda -------------------------------------------------------------------------------- /src/T/TypedSem.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/T/TypedSem.agda -------------------------------------------------------------------------------- /src/Unbox/Gluing.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Gluing.agda -------------------------------------------------------------------------------- /src/Unbox/GluingProps.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/GluingProps.agda -------------------------------------------------------------------------------- /src/Unbox/PER.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/PER.agda -------------------------------------------------------------------------------- /src/Unbox/Presheaf.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Presheaf.agda -------------------------------------------------------------------------------- /src/Unbox/README.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/README.agda -------------------------------------------------------------------------------- /src/Unbox/Restricted.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Restricted.agda -------------------------------------------------------------------------------- /src/Unbox/SemanticProps.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/SemanticProps.agda -------------------------------------------------------------------------------- /src/Unbox/Semantics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Semantics.agda -------------------------------------------------------------------------------- /src/Unbox/Soundness.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Soundness.agda -------------------------------------------------------------------------------- /src/Unbox/StaticProps.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/StaticProps.agda -------------------------------------------------------------------------------- /src/Unbox/Statics.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Statics.agda -------------------------------------------------------------------------------- /src/Unbox/Typ.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Unbox/Typ.agda -------------------------------------------------------------------------------- /src/Weakening.agda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuStmpHrrr/mech-type-theories/HEAD/src/Weakening.agda --------------------------------------------------------------------------------