patronus 0.38.1

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

pub mod btor2;
pub mod expr;
pub mod mc;
pub mod sim;
pub mod smt;
pub mod system;

pub const VERSION: Option<&str> = option_env!("CARGO_PKG_VERSION");