workflow/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//  LIB.rs
//    by Lut99
//
//  Created:
//    27 Oct 2023, 15:54:17
//  Last edited:
//    16 Nov 2023, 17:24:56
//  Auto updated?
//    Yes
//
//  Description:
//!   Defines the workflow representation used internally by the checker.
//

// Declare the subsubmodules
pub mod compile;
#[cfg(feature = "eflint")]
pub mod eflint;
pub mod optimize;
pub mod preprocess;
pub mod spec;
#[cfg(test)]
pub mod tests;
pub mod utils;
pub mod visualize;

// Bring some of it into the main namespace
pub use spec::*;