Skip to content

Commit

Permalink
2.0.1: removed debug output from Nfa.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Harald Kirsch committed Feb 19, 2016
1 parent bab7a1d commit 8f23099
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Documentation/RELNOTES
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
VERSION 2.0.1

Removed left-over debugging output in Nfa.java.


VERSION 2.0.0

Added two new syntax features to the regular expression parser.
Expand Down
2 changes: 0 additions & 2 deletions src/java/monq/jfa/Nfa.java
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,6 @@ public Nfa shortest() throws CompileDfaException {
* actions are kept such that both Nfas referernce the same actions.
*/
public Nfa copy() {
this.toDot("/home/harald/tmp/bla.dot");
final Map<FaState,FaState> visited = new IdentityHashMap<>();
final Queue<FaState> work = new LinkedList<>();
work.add(start);
Expand Down Expand Up @@ -1023,7 +1022,6 @@ public Nfa copy() {
newState.setTrans(ivals.toCharTrans(memoryForSpeedTradeFactor));
}
}
result.toDot("/home/harald/tmp/bli.dot");
return result;
}
/*+******************************************************************/
Expand Down

0 comments on commit 8f23099

Please sign in to comment.