https://github.com/jettify/pydata2019
Trust not, verify. How to verify algorithms with model checker
https://github.com/jettify/pydata2019
Last synced: about 1 month ago
JSON representation
Trust not, verify. How to verify algorithms with model checker
- Host: GitHub
- URL: https://github.com/jettify/pydata2019
- Owner: jettify
- Created: 2019-02-23T17:08:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-02-23T17:14:57.000Z (about 6 years ago)
- Last Synced: 2025-01-25T11:11:19.550Z (3 months ago)
- Language: TeX
- Homepage:
- Size: 4.14 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Trust not, verify. How to verify algorithms with model checker
Building correct concurrent and distributed systems is a hard and very
challenging task also high complexity of such software increases the
probability of human error in design and architecture. On practice,
standard verification techniques in the industry like tests or code
reviews are necessary but not sufficient.In my talk we will discuss formal specification and verification language
that helps engineers design, specify, reason about and verify complex,
real-life algorithms and software systems. We will use TLA+ model checking
tool to find nasty dreadlocks, in simple python multithreading code. I also
share my experience using model checking for verification of open source
locking library for asyncio## Usage
Copy contents of repository to the separate folder, edit `slides.tex` then
compile it with `xlatex` using command:```bash
$ make lint
$ make pdf
```## Source code highlighting
Slides use `minted` package for source code highlighting, it depends on
`pygments`, TLA+ requires one more package.```bash
$ mkvirtualenv slides
$ pip install pygments
$ pip install https://github.com/hwayne/tla-pygments/archive/master.zip
```