Skip to content

Commit

Permalink
rename mc::state -> mc::values
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Nov 17, 2023
1 parent 1f0041f commit 78f5a4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
// author: Kevin Laeufer <[email protected]>
mod sim;
mod smt;
mod state;
mod values;

pub use sim::Simulator;
pub use smt::{
ModelCheckResult, SmtModelChecker, SmtModelCheckerOptions, SmtSolverCmd, BITWUZLA_CMD,
};
pub use state::{Value, ValueRef, ValueStore, Witness};
pub use values::{Value, ValueRef, ValueStore, Witness};
File renamed without changes.

0 comments on commit 78f5a4e

Please sign in to comment.