kotoba_rewrite/rewrite/mod.rs
1//! DPO書換えエンジン
2
3pub mod engine;
4pub mod matcher;
5pub mod applier;
6
7pub use engine::*;
8pub use matcher::*;
9pub use applier::*;
10
11/// DPOマッチング結果
12#[derive(Debug, Clone)]
13pub struct DPOMatch {
14 pub node_mapping: std::collections::HashMap<String, String>,
15 pub edge_mapping: std::collections::HashMap<String, String>,
16}