Created
November 24, 2011 05:18
-
-
Save hns/1390679 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private boolean updateEntrySet(BitSet entrySet, BitSet exitSet, | |
BitSet useBeforeDef, BitSet notDef) { | |
int card = entrySet.cardinality(); | |
entrySet.or(exitSet); | |
entrySet.and(notDef); | |
entrySet.or(useBeforeDef); | |
return entrySet.cardinality() != card; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment