Commit 9b02859
committed
Release v0.1.3: Verified 1:1 behavior with recheck
- Added comprehensive test suite matching recheck's AutomatonCheckerSuite
- Verified all constant, linear, polynomial, and exponential complexity patterns
- Confirmed no false positives on safe patterns (^a+$, ^[a-z]+$, ^(a|b)+$)
- Confirmed no false negatives on vulnerable patterns (^(a+)+$, ^(a|a)*$, ^(a|b|ab)*$)
- Added SCC-based checker and NFAwLA implementation for precise detection
- Extended test coverage with recheck compatibility tests1 parent 07b5d12 commit 9b02859
File tree
11 files changed
+2546
-139
lines changed- docs
- src/redoctor
- automaton
- parser
- tests
11 files changed
+2546
-139
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
13 | 52 | | |
14 | 53 | | |
15 | 54 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments