aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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()) {