├── .gitignore ├── 000-template.md ├── README.md └── text ├── 000-coq-enhancement-proposal.md ├── 003-opam-metadata.md ├── 010-econstr.md ├── 011-proofview-goal-w-state.md ├── 040-no-delayed-opaque-proofs-in-kernel.md ├── 044-vo-named-format.md ├── 048-packaging-coq-native.md ├── 052-platform-release-cycle.md ├── 053-debugger.md ├── 056-debugger-gui.md ├── 067-sort-variable-unification.md ├── 068-coqide-split.md ├── inductive-branch-predicate-representation-and-reduction.md ├── numeral-notation.md ├── sprop.md └── typed-ltac.md /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/000-template.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/README.md -------------------------------------------------------------------------------- /text/000-coq-enhancement-proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/000-coq-enhancement-proposal.md -------------------------------------------------------------------------------- /text/003-opam-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/003-opam-metadata.md -------------------------------------------------------------------------------- /text/010-econstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/010-econstr.md -------------------------------------------------------------------------------- /text/011-proofview-goal-w-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/011-proofview-goal-w-state.md -------------------------------------------------------------------------------- /text/040-no-delayed-opaque-proofs-in-kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/040-no-delayed-opaque-proofs-in-kernel.md -------------------------------------------------------------------------------- /text/044-vo-named-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/044-vo-named-format.md -------------------------------------------------------------------------------- /text/048-packaging-coq-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/048-packaging-coq-native.md -------------------------------------------------------------------------------- /text/052-platform-release-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/052-platform-release-cycle.md -------------------------------------------------------------------------------- /text/053-debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/053-debugger.md -------------------------------------------------------------------------------- /text/056-debugger-gui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/056-debugger-gui.md -------------------------------------------------------------------------------- /text/067-sort-variable-unification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/067-sort-variable-unification.md -------------------------------------------------------------------------------- /text/068-coqide-split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/068-coqide-split.md -------------------------------------------------------------------------------- /text/inductive-branch-predicate-representation-and-reduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/inductive-branch-predicate-representation-and-reduction.md -------------------------------------------------------------------------------- /text/numeral-notation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/numeral-notation.md -------------------------------------------------------------------------------- /text/sprop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/sprop.md -------------------------------------------------------------------------------- /text/typed-ltac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-prover/rfcs/HEAD/text/typed-ltac.md --------------------------------------------------------------------------------