package soteria

  1. Overview
  2. Docs
Soteria is a toolkit for writing symbolic bug-finding tools

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.1.0.tar.gz
md5=8f15271b81e34caa12a39e3b7a63313a
sha512=5f6987cf362bc06402d9bed324c7b060384d7ef02479e2a614ca4b4122cc65082f6afc892c398c6562b0eb42fc13d6cc77e76c2518221590576215aaa00ee5bd

doc/index.html

Soteria Documentation

Soteria is a comprehensive library for writing symbolic execution engines. The library is parametric and allows for defining one's own notion of symbolic value or solver, enabling arbitrary language-specific optimisations. Our goal is for symbolic execution engines to be easy to write, easy to read, highly customisable and efficient.

Manual contents

Library

Core components of Soteria, enabling symbolic execution, solver-interaction, user-friendly reporting, and more.

The two built-in symbolic value implementations, to get started; you can also define your own!

  • Soteria.Tiny_values Minimal natural integer based values. Suitable for toy examples.
  • Soteria.Bv_values Extensible bit-vector based values, with floating point support. Suitable for low-level languages.