-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Bit sets currently use 32bit words, this is not optimal since CPUs use 64-bit words and 64bit cache lines.
public class BitArreintjeFastInnerMapArray
{
//Internal since it's used by some other classes (because this is so awesome)
internal long[] _innerData;
public BitArreintjeFastInnerMapArray(int height)
{
_innerData = new long[height / 64 + 1];
}
....
....
....
Metadata
Metadata
Assignees
Labels
No labels