├── .github └── workflows │ ├── deploy-coqdoc.yml │ └── docker-action.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.coq.local ├── README.md ├── TODO.org ├── _CoqProject ├── coq-mmaps.opam ├── dune-project ├── meta.yml ├── resources ├── config.js ├── coqdoc.css ├── coqdocjs.css ├── coqdocjs.js ├── footer.html ├── header.html ├── index.html └── index.md └── theories ├── AVL.v ├── AVLproofs.v ├── Comparisons.v ├── Facts.v ├── GenTree.v ├── Interface.v ├── MMaps.v ├── OrdList.v ├── Positive.v ├── RBT.v ├── RBTproofs.v ├── Raw.v ├── Utils.v ├── WeakList.v ├── demo.v └── dune /.github/workflows/deploy-coqdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/.github/workflows/deploy-coqdoc.yml -------------------------------------------------------------------------------- /.github/workflows/docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/.github/workflows/docker-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.coq.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/Makefile.coq.local -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/README.md -------------------------------------------------------------------------------- /TODO.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/TODO.org -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/_CoqProject -------------------------------------------------------------------------------- /coq-mmaps.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/coq-mmaps.opam -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/dune-project -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/meta.yml -------------------------------------------------------------------------------- /resources/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/config.js -------------------------------------------------------------------------------- /resources/coqdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/coqdoc.css -------------------------------------------------------------------------------- /resources/coqdocjs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/coqdocjs.css -------------------------------------------------------------------------------- /resources/coqdocjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/coqdocjs.js -------------------------------------------------------------------------------- /resources/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/footer.html -------------------------------------------------------------------------------- /resources/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/header.html -------------------------------------------------------------------------------- /resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/index.html -------------------------------------------------------------------------------- /resources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/resources/index.md -------------------------------------------------------------------------------- /theories/AVL.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/AVL.v -------------------------------------------------------------------------------- /theories/AVLproofs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/AVLproofs.v -------------------------------------------------------------------------------- /theories/Comparisons.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/Comparisons.v -------------------------------------------------------------------------------- /theories/Facts.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/Facts.v -------------------------------------------------------------------------------- /theories/GenTree.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/GenTree.v -------------------------------------------------------------------------------- /theories/Interface.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/Interface.v -------------------------------------------------------------------------------- /theories/MMaps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/MMaps.v -------------------------------------------------------------------------------- /theories/OrdList.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/OrdList.v -------------------------------------------------------------------------------- /theories/Positive.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/Positive.v -------------------------------------------------------------------------------- /theories/RBT.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/RBT.v -------------------------------------------------------------------------------- /theories/RBTproofs.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/RBTproofs.v -------------------------------------------------------------------------------- /theories/Raw.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/Raw.v -------------------------------------------------------------------------------- /theories/Utils.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/Utils.v -------------------------------------------------------------------------------- /theories/WeakList.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/WeakList.v -------------------------------------------------------------------------------- /theories/demo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/demo.v -------------------------------------------------------------------------------- /theories/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocq-community/mmaps/HEAD/theories/dune --------------------------------------------------------------------------------