We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
int[] is a confortable approach to state the domain but
It would be great to be able to provide a bitset
The text was updated successfully, but these errors were encountered:
At first sight, I can't see how to clone a java.util.BitSet into a IStateBitSet without calling bitset.toLongArray() which does a copy itself:
bitset.toLongArray()
public long[] toLongArray() { return Arrays.copyOf(words, wordsInUse); }
But I suppose it's still faster than the iteration over the values... (well it depends on the values)
Sorry, something went wrong.
Fix #1120
54a6482
Introduce a new API to declare enumerated variables based on a BitSet and on offset
cprudhom
No branches or pull requests
int[] is a confortable approach to state the domain but
It would be great to be able to provide a bitset
The text was updated successfully, but these errors were encountered: