From 038c649ae7b504f2dddee2178271fa11f10d2c9a Mon Sep 17 00:00:00 2001 From: Francesco Forcher Date: Sun, 4 Aug 2024 19:10:27 +0200 Subject: [PATCH] Update README.md Remove "Known issues" after fixing only known issue --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 742551d..e78486b 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,3 @@ RUST_LOG=debug cargo run -- -m deterministic -a indexed-fsm -g 500 -n 500 The `regex-automata` public API does not expose the internal states of the automata, so a [fork](https://github.com/f-forcher/regex/tree/expose-state-iter) of the Rust stdlib `regex` repo has been made and its internal `State` API exposed. - -## Known issues -Using very large dictionaries may result in failure to produce the right output. The issue seems to be deterministic and independent of the -specific struct-gen algo used, only depending on the dictionary size. It could be connected to the `regex` crate internal implementation of FSM states.