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
the current AUT parser creates a SimpleAutomaton with only two states, 0 and 1. State 2 is omitted.
In general, states with no outgoing transitions are ignored by the AUT parser—in InternalAutParser.java the following lines of code are responsible for adding states to the outputted automaton, but only states that correspond to keys in the transitionMap (i.e. states that have outgoing transitions) are iterated over.
final CompactNFA<I> result = new CompactNFA<>(alphabet, transitionMap.size());
for (int i = 0; i < transitionMap.size(); i++) {
result.addState();
}
The text was updated successfully, but these errors were encountered:
Given the following AUT input:
the current AUT parser creates a SimpleAutomaton with only two states, 0 and 1. State 2 is omitted.
In general, states with no outgoing transitions are ignored by the AUT parser—in InternalAutParser.java the following lines of code are responsible for adding states to the outputted automaton, but only states that correspond to keys in the transitionMap (i.e. states that have outgoing transitions) are iterated over.
The text was updated successfully, but these errors were encountered: