aboutsummaryrefslogtreecommitdiffstats
path: root/src/parse/regex/enfa.rs
diff options
context:
space:
mode:
authorJonas Maier <jonas@x77.dev>2026-06-02 22:07:45 +0200
committerJonas Maier <jonas@x77.dev>2026-06-02 22:07:45 +0200
commit5b79c55d2eea520c1d32be0cf125ee71462f9fb1 (patch)
tree05378871aec53a8858d1365a3cb36a1565ada65b /src/parse/regex/enfa.rs
parent8dbff3c028ed9a441e90b39dfe59ad4124cf6195 (diff)
downloadpish-5b79c55d2eea520c1d32be0cf125ee71462f9fb1.tar.gz
remove todo
Diffstat (limited to 'src/parse/regex/enfa.rs')
-rw-r--r--src/parse/regex/enfa.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parse/regex/enfa.rs b/src/parse/regex/enfa.rs
index b0588ab..a407e9e 100644
--- a/src/parse/regex/enfa.rs
+++ b/src/parse/regex/enfa.rs
@@ -253,8 +253,6 @@ impl Thread {
})
.collect();
- // TODO inspect negative behavior -- do we need the cartesian product or something more exocit?
-
for s in next_states {
for p in positives.clone() {
if let Some(thread) = Self::new(enfa, s, p.clone(), negatives.clone()) {