You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should be an option to test two separate finite automatons rather than only using a function. For example
// Not passing constructor arguments for sake of brevityconstdfa1=newDeterministicFiniteAutomaton();constdfa2=newDeterministicFiniteAutomaton();constfiniteAutomataTest=newFiniteAutomataTest();finiteAutomataTest.test([{automatons: [dfa1,dfa2]options: {type: "generate",// ...}}])
This would test the two automatons together, rather than using their logic test functions.
This would also somewhat solve the issue for batching and caching input strings as we can now test multiple automatons using similar inputs.
The text was updated successfully, but these errors were encountered:
There should be an option to test two separate finite automatons rather than only using a function. For example
This would test the two automatons together, rather than using their logic test functions.
This would also somewhat solve the issue for batching and caching input strings as we can now test multiple automatons using similar inputs.
The text was updated successfully, but these errors were encountered: