Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Disable colliding fate sorting for now.
Seems it's not quite right...and we get righter results without it.
  • Loading branch information
jnthn committed Feb 27, 2013
1 parent a63c38b commit b93079a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -3043,11 +3043,12 @@ else if (act == NFA.EDGE_CODEPOINT_I_NEG) {
* future, we'll want to factor in longest literal prefix too. */
int charFates = fates.size() - prevFates;
if (charFates > 1) {
List<Integer> charFateList = fates.subList(prevFates, fates.size());
/* XXX Busted... */
/*List<Integer> charFateList = fates.subList(prevFates, fates.size());
Collections.sort(charFateList);
int insertPos = prevFates;
for (int i = charFates - 1; i >= 0; i--)
fates.set(insertPos++, charFateList.get(i));
fates.set(insertPos++, charFateList.get(i));*/
}
}

Expand Down

0 comments on commit b93079a

Please sign in to comment.