├── .github └── workflows │ ├── check-links.yml │ ├── deploy-pages.yml │ └── docker-action.yml ├── .gitignore ├── LICENSE ├── LICENSE-docs ├── Makefile ├── README.md ├── _CoqProject ├── coq-tricks.opam ├── meta.yml ├── mlc_config.json └── src ├── ArityDefinition.v ├── Bidirectional.v ├── Check.v ├── CheckEnv.v ├── Coercions.v ├── Constructors.v ├── Context.v ├── Deex.v ├── DefEquality.v ├── DivMod.v ├── Function.v ├── HintLocality.v ├── Instantiate.v ├── IntroPatterns.v ├── Learn.v ├── LtacGallinaApplication.v ├── Macros.v ├── Modules.v ├── NoInit.v ├── NotationModule.v ├── Projections.v ├── RecordFunction.v ├── RelationInstances.v ├── RewNotation.v ├── Search.v ├── Sections.v ├── Sleep.v ├── SmallInversions.v ├── TacticNotationOptionalParams.v ├── TypeParametersAndIndices.v ├── UnshelveInstantiate.v └── Views.v /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/.github/workflows/check-links.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.github/workflows/docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/.github/workflows/docker-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/LICENSE-docs -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- 1 | -Q src Tricks 2 | -------------------------------------------------------------------------------- /coq-tricks.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/coq-tricks.opam -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/meta.yml -------------------------------------------------------------------------------- /mlc_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/mlc_config.json -------------------------------------------------------------------------------- /src/ArityDefinition.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/ArityDefinition.v -------------------------------------------------------------------------------- /src/Bidirectional.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Bidirectional.v -------------------------------------------------------------------------------- /src/Check.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Check.v -------------------------------------------------------------------------------- /src/CheckEnv.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/CheckEnv.v -------------------------------------------------------------------------------- /src/Coercions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Coercions.v -------------------------------------------------------------------------------- /src/Constructors.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Constructors.v -------------------------------------------------------------------------------- /src/Context.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Context.v -------------------------------------------------------------------------------- /src/Deex.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Deex.v -------------------------------------------------------------------------------- /src/DefEquality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/DefEquality.v -------------------------------------------------------------------------------- /src/DivMod.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/DivMod.v -------------------------------------------------------------------------------- /src/Function.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Function.v -------------------------------------------------------------------------------- /src/HintLocality.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/HintLocality.v -------------------------------------------------------------------------------- /src/Instantiate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Instantiate.v -------------------------------------------------------------------------------- /src/IntroPatterns.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/IntroPatterns.v -------------------------------------------------------------------------------- /src/Learn.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Learn.v -------------------------------------------------------------------------------- /src/LtacGallinaApplication.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/LtacGallinaApplication.v -------------------------------------------------------------------------------- /src/Macros.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Macros.v -------------------------------------------------------------------------------- /src/Modules.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Modules.v -------------------------------------------------------------------------------- /src/NoInit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/NoInit.v -------------------------------------------------------------------------------- /src/NotationModule.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/NotationModule.v -------------------------------------------------------------------------------- /src/Projections.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Projections.v -------------------------------------------------------------------------------- /src/RecordFunction.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/RecordFunction.v -------------------------------------------------------------------------------- /src/RelationInstances.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/RelationInstances.v -------------------------------------------------------------------------------- /src/RewNotation.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/RewNotation.v -------------------------------------------------------------------------------- /src/Search.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Search.v -------------------------------------------------------------------------------- /src/Sections.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Sections.v -------------------------------------------------------------------------------- /src/Sleep.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Sleep.v -------------------------------------------------------------------------------- /src/SmallInversions.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/SmallInversions.v -------------------------------------------------------------------------------- /src/TacticNotationOptionalParams.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/TacticNotationOptionalParams.v -------------------------------------------------------------------------------- /src/TypeParametersAndIndices.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/TypeParametersAndIndices.v -------------------------------------------------------------------------------- /src/UnshelveInstantiate.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/UnshelveInstantiate.v -------------------------------------------------------------------------------- /src/Views.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/rocq-tricks/HEAD/src/Views.v --------------------------------------------------------------------------------