├── .github └── workflows │ └── docker-action.yml ├── .gitignore ├── CREDITS ├── CoqMakefile.local ├── LICENSE ├── Makefile ├── README.md ├── _CoqProject ├── coq-fcsl-pcm.opam ├── core ├── auto.v ├── autouniq.v ├── axioms.v ├── finmap.v ├── options.v ├── ordtype.v ├── pred.v ├── prelude.v ├── rtc.v ├── seqext.v ├── seqperm.v ├── slice.v ├── uconsec.v ├── useqord.v └── uslice.v ├── meta.yml └── pcm ├── automap.v ├── autopcm.v ├── heap.v ├── invertible.v ├── minus.v ├── morphism.v ├── mutex.v ├── natmap.v ├── pcm.v └── unionmap.v /.github/workflows/docker-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/.github/workflows/docker-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/CREDITS -------------------------------------------------------------------------------- /CoqMakefile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/CoqMakefile.local -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/_CoqProject -------------------------------------------------------------------------------- /coq-fcsl-pcm.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/coq-fcsl-pcm.opam -------------------------------------------------------------------------------- /core/auto.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/auto.v -------------------------------------------------------------------------------- /core/autouniq.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/autouniq.v -------------------------------------------------------------------------------- /core/axioms.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/axioms.v -------------------------------------------------------------------------------- /core/finmap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/finmap.v -------------------------------------------------------------------------------- /core/options.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/options.v -------------------------------------------------------------------------------- /core/ordtype.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/ordtype.v -------------------------------------------------------------------------------- /core/pred.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/pred.v -------------------------------------------------------------------------------- /core/prelude.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/prelude.v -------------------------------------------------------------------------------- /core/rtc.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/rtc.v -------------------------------------------------------------------------------- /core/seqext.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/seqext.v -------------------------------------------------------------------------------- /core/seqperm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/seqperm.v -------------------------------------------------------------------------------- /core/slice.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/slice.v -------------------------------------------------------------------------------- /core/uconsec.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/uconsec.v -------------------------------------------------------------------------------- /core/useqord.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/useqord.v -------------------------------------------------------------------------------- /core/uslice.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/core/uslice.v -------------------------------------------------------------------------------- /meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/meta.yml -------------------------------------------------------------------------------- /pcm/automap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/automap.v -------------------------------------------------------------------------------- /pcm/autopcm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/autopcm.v -------------------------------------------------------------------------------- /pcm/heap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/heap.v -------------------------------------------------------------------------------- /pcm/invertible.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/invertible.v -------------------------------------------------------------------------------- /pcm/minus.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/minus.v -------------------------------------------------------------------------------- /pcm/morphism.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/morphism.v -------------------------------------------------------------------------------- /pcm/mutex.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/mutex.v -------------------------------------------------------------------------------- /pcm/natmap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/natmap.v -------------------------------------------------------------------------------- /pcm/pcm.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/pcm.v -------------------------------------------------------------------------------- /pcm/unionmap.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imdea-software/fcsl-pcm/HEAD/pcm/unionmap.v --------------------------------------------------------------------------------