1 2 3 4 5 6 7 8 9
//! Conformance Checking //! //! Conformance checking techniques typically compare the behavior of a process model with //! event data. pub mod case_centric; pub mod object_centric; #[allow(unused_imports)] pub use case_centric::*; pub use object_centric::*;