|
|
|
|
|
by thesz
4272 days ago
|
|
The problem with DFA is that they explode exponentially for number of choices containing ".*". Then you fail to get a locality of reference, etc. DFA also very sequential. This is why NDAs are better - you can run several NDAs in parallel with their states and inputs. It basically becomes vectorized problem. |
|