├── .gitignore ├── .travis-ci.sh ├── .travis.yml ├── Core ├── AccountableSafety.v ├── Blockforest.v ├── Node.v ├── PlausibleLiveness.v ├── Protocol.v ├── StrongInductionLtn.v ├── TransitionSystemSpec.v ├── ValidatorBlockforest.v ├── ValidatorDepositQuorum.v ├── ValidatorQuorum.v └── ssrAC.v ├── LICENSE.md ├── Makefile ├── README.md ├── _CoqProject ├── opam ├── report ├── .gitignore ├── ACM-Reference-Format.bst ├── acmart.cls ├── bib.bib ├── lstcoq.sty ├── report.pdf └── report.tex └── resources └── pdf-icon.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/.travis-ci.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Core/AccountableSafety.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/AccountableSafety.v -------------------------------------------------------------------------------- /Core/Blockforest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/Blockforest.v -------------------------------------------------------------------------------- /Core/Node.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/Node.v -------------------------------------------------------------------------------- /Core/PlausibleLiveness.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/PlausibleLiveness.v -------------------------------------------------------------------------------- /Core/Protocol.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/Protocol.v -------------------------------------------------------------------------------- /Core/StrongInductionLtn.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/StrongInductionLtn.v -------------------------------------------------------------------------------- /Core/TransitionSystemSpec.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/TransitionSystemSpec.v -------------------------------------------------------------------------------- /Core/ValidatorBlockforest.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/ValidatorBlockforest.v -------------------------------------------------------------------------------- /Core/ValidatorDepositQuorum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/ValidatorDepositQuorum.v -------------------------------------------------------------------------------- /Core/ValidatorQuorum.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/ValidatorQuorum.v -------------------------------------------------------------------------------- /Core/ssrAC.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Core/ssrAC.v -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/README.md -------------------------------------------------------------------------------- /_CoqProject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/_CoqProject -------------------------------------------------------------------------------- /opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/opam -------------------------------------------------------------------------------- /report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/.gitignore -------------------------------------------------------------------------------- /report/ACM-Reference-Format.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/ACM-Reference-Format.bst -------------------------------------------------------------------------------- /report/acmart.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/acmart.cls -------------------------------------------------------------------------------- /report/bib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/bib.bib -------------------------------------------------------------------------------- /report/lstcoq.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/lstcoq.sty -------------------------------------------------------------------------------- /report/report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/report.pdf -------------------------------------------------------------------------------- /report/report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/report/report.tex -------------------------------------------------------------------------------- /resources/pdf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runtimeverification/casper-proofs/HEAD/resources/pdf-icon.png --------------------------------------------------------------------------------