aboutsummaryrefslogtreecommitdiffstats
path: root/src/regex/mod.rs
diff options
context:
space:
mode:
authorJonas Maier <jonas@x77.dev>2026-06-06 14:29:21 +0200
committerJonas Maier <jonas@x77.dev>2026-06-06 14:29:21 +0200
commit24d41bb4daf081bb9cd63a2107b28b1878594ed3 (patch)
treee571d21edd4e20a3f7246bebf805b461c5ed7a43 /src/regex/mod.rs
parentd39ed8fc77981f937c35fa84a7ff5d288d0c7181 (diff)
downloadpish-24d41bb4daf081bb9cd63a2107b28b1878594ed3.tar.gz
tried to implement a decision tree for faster dfa, but it is not faster
Diffstat (limited to 'src/regex/mod.rs')
-rw-r--r--src/regex/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/regex/mod.rs b/src/regex/mod.rs
index 438361a..f10a92d 100644
--- a/src/regex/mod.rs
+++ b/src/regex/mod.rs
@@ -3,6 +3,7 @@ mod byte_range;
pub mod dfa;
pub mod enfa;
pub mod simple;
+mod decision_tree;
#[derive(PartialEq, Eq, Debug, Clone, Copy, Hash)]
pub enum LookDirection {