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
29
30
31
32
33
34
35
36
//!
//! [`EGraph`]s (and almost everything else in this crate) are
//! parameterized over the language given by the user (by implementing
//! the [`Language`] trait).
//!
//! A typical usage would either implement [`Language`] or use the
//! provided [`TestLang`]. From there, you can use the functionality
//! from the [`ParsableLanguage`] trait module to create expressions
//! and add them to the EGraph.
//!
//! [`EGraph`]: egraph/struct.EGraph.html
//! [`Language`]: expr/trait.Language.html
//! [`TestLang`]: expr/tests/struct.TestLang.html
//! [`ParsableLanguage`]: parse/trait.ParsableLanguage.html

#![warn(clippy::correctness)]
#![warn(clippy::style)]
#![warn(clippy::complexity)]
#![warn(clippy::perf)]
#![warn(clippy::cargo)]
// #![warn(clippy::pedantic)]
// #![warn(clippy::nursery)]

mod unionfind;

pub mod dot;
pub mod egraph;
pub mod expr;
pub mod extract;
pub mod parse;
pub mod pattern;

#[cfg(test)]
fn init_logger() {
    let _ = env_logger::builder().is_test(true).try_init();
}