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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#![warn(missing_docs)]
mod macros;
pub mod tutorials;
mod dot;
mod eclass;
mod egraph;
mod explain;
mod extract;
mod language;
mod machine;
mod pattern;
mod rewrite;
mod run;
mod subst;
mod unionfind;
mod util;
#[derive(Clone, Copy, Default, Ord, PartialOrd, Eq, PartialEq, Hash)]
#[cfg_attr(feature = "serde-1", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde-1", serde(transparent))]
pub struct Id(u32);
impl From<usize> for Id {
fn from(n: usize) -> Id {
Id(n as u32)
}
}
impl From<Id> for usize {
fn from(id: Id) -> usize {
id.0 as usize
}
}
impl std::fmt::Debug for Id {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
impl std::fmt::Display for Id {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}
pub(crate) use {explain::Explain, explain::Justification, unionfind::UnionFind};
pub use {
dot::Dot,
eclass::EClass,
egraph::EGraph,
explain::{Explanation, FlatExplanation, FlatTerm, TreeExplanation, TreeTerm},
extract::*,
language::*,
pattern::{ENodeOrVar, Pattern, PatternAst, SearchMatches},
rewrite::{Applier, Condition, ConditionEqual, ConditionalApplier, Rewrite, Searcher},
run::*,
subst::{Subst, Var},
util::*,
};
#[cfg(test)]
fn init_logger() {
let _ = env_logger::builder().is_test(true).try_init();
}
#[doc(hidden)]
pub mod test;