patronus 0.35.0

Hardware bug-finding toolkit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2023 The Regents of the University of California
// released under BSD 3-Clause License
// author: Kevin Laeufer <laeufer@berkeley.edu>

mod bmc;
mod pdr;
mod types;

pub use bmc::{
    ModelCheckResult, TransitionSystemEncoding, UnrollSmtEncoding, bmc, check_assuming,
    check_assuming_end, get_smt_value,
};
pub use pdr::pdr;
pub use types::{InitValue, Witness};