feat(argus-semantics): finish quantitative semantics

The Boolean semantics are still incomplete. The decision to keep the
computations separate stays, as using the quantitative semantics for
Boolean values (while sound) interpolates in weird places.
May revisit this decision in the future
This commit is contained in:
Anand Balakrishnan 2023-08-29 18:16:52 -07:00
parent 28a79cb88c
commit ad9afb4eba
No known key found for this signature in database
7 changed files with 858 additions and 337 deletions

View file

@ -4,9 +4,8 @@
//! traces_, i.e., a collection of signals that have been extracted from observing and
//! sampling from some system.
// pub mod eval;
// pub mod semantics;
// pub mod traits;
pub mod semantics;
pub mod traits;
pub mod utils;
// pub use traits::{BooleanSemantics, QuantitativeSemantics, Trace};
pub use traits::Trace;