package it.unimi.dsi.fastutil.doubles;
import it.unimi.dsi.fastutil.Hash;
import it.unimi.dsi.fastutil.HashCommon;
import static it.unimi.dsi.fastutil.HashCommon.arraySize;
import static it.unimi.dsi.fastutil.HashCommon.maxFill;
import java.util.Map;
import java.util.Arrays;
import java.util.NoSuchElementException;
import java.util.function.Consumer;
import it.unimi.dsi.fastutil.booleans.BooleanCollection;
import it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection;
import it.unimi.dsi.fastutil.booleans.BooleanIterator;
import it.unimi.dsi.fastutil.booleans.BooleanConsumer;
import it.unimi.dsi.fastutil.objects.AbstractObjectSet;
import it.unimi.dsi.fastutil.objects.ObjectIterator;
public class Double2BooleanOpenHashMap extends AbstractDouble2BooleanMap
implements
java.io.Serializable,
Cloneable,
Hash {
private static final long serialVersionUID = 0L;
private static final boolean ASSERTS = false;
protected transient double[] key;
protected transient boolean[] value;
protected transient int mask;
protected transient boolean containsNullKey;
protected transient int n;
protected transient int maxFill;
protected final transient int minN;
protected int size;
protected final float f;
protected transient FastEntrySet entries;
protected transient DoubleSet keys;
protected transient BooleanCollection values;
public Double2BooleanOpenHashMap(final int expected, final float f) {
if (f <= 0 || f > 1)
throw new IllegalArgumentException("Load factor must be greater than 0 and smaller than or equal to 1");
if (expected < 0)
throw new IllegalArgumentException("The expected number of elements must be nonnegative");
this.f = f;
minN = n = arraySize(expected, f);
mask = n - 1;
maxFill = maxFill(n, f);
key = new double[n + 1];
value = new boolean[n + 1];
}
public Double2BooleanOpenHashMap(final int expected) {
this(expected, DEFAULT_LOAD_FACTOR);
}
public Double2BooleanOpenHashMap() {
this(DEFAULT_INITIAL_SIZE, DEFAULT_LOAD_FACTOR);
}
public Double2BooleanOpenHashMap(final Map<? extends Double, ? extends Boolean> m, final float f) {
this(m.size(), f);
putAll(m);
}
public Double2BooleanOpenHashMap(final Map<? extends Double, ? extends Boolean> m) {
this(m, DEFAULT_LOAD_FACTOR);
}
public Double2BooleanOpenHashMap(final Double2BooleanMap m, final float f) {
this(m.size(), f);
putAll(m);
}
public Double2BooleanOpenHashMap(final Double2BooleanMap m) {
this(m, DEFAULT_LOAD_FACTOR);
}
public Double2BooleanOpenHashMap(final double[] k, final boolean[] v, final float f) {
this(k.length, f);
if (k.length != v.length)
throw new IllegalArgumentException(
"The key array and the value array have different lengths (" + k.length + " and " + v.length + ")");
for (int i = 0; i < k.length; i++)
this.put(k[i], v[i]);
}
public Double2BooleanOpenHashMap(final double[] k, final boolean[] v) {
this(k, v, DEFAULT_LOAD_FACTOR);
}
private int realSize() {
return containsNullKey ? size - 1 : size;
}
private void ensureCapacity(final int capacity) {
final int needed = arraySize(capacity, f);
if (needed > n)
rehash(needed);
}
private void tryCapacity(final long capacity) {
final int needed = (int) Math.min(1 << 30,
Math.max(2, HashCommon.nextPowerOfTwo((long) Math.ceil(capacity / f))));
if (needed > n)
rehash(needed);
}
private boolean removeEntry(final int pos) {
final boolean oldValue = value[pos];
size--;
shiftKeys(pos);
if (n > minN && size < maxFill / 4 && n > DEFAULT_INITIAL_SIZE)
rehash(n / 2);
return oldValue;
}
private boolean removeNullEntry() {
containsNullKey = false;
final boolean oldValue = value[n];
size--;
if (n > minN && size < maxFill / 4 && n > DEFAULT_INITIAL_SIZE)
rehash(n / 2);
return oldValue;
}
@Override
public void putAll(Map<? extends Double, ? extends Boolean> m) {
if (f <= .5)
ensureCapacity(m.size());
else
tryCapacity(size() + m.size());
super.putAll(m);
}
private int find(final double k) {
if ((Double.doubleToLongBits(k) == 0))
return containsNullKey ? n : -(n + 1);
double curr;
final double[] key = this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return -(pos + 1);
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return pos;
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return -(pos + 1);
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return pos;
}
}
private void insert(final int pos, final double k, final boolean v) {
if (pos == n)
containsNullKey = true;
key[pos] = k;
value[pos] = v;
if (size++ >= maxFill)
rehash(arraySize(size + 1, f));
if (ASSERTS)
checkTable();
}
@Override
public boolean put(final double k, final boolean v) {
final int pos = find(k);
if (pos < 0) {
insert(-pos - 1, k, v);
return defRetValue;
}
final boolean oldValue = value[pos];
value[pos] = v;
return oldValue;
}
protected final void shiftKeys(int pos) {
int last, slot;
double curr;
final double[] key = this.key;
for (;;) {
pos = ((last = pos) + 1) & mask;
for (;;) {
if ((Double.doubleToLongBits(curr = key[pos]) == 0)) {
key[last] = (0);
return;
}
slot = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(curr)) & mask;
if (last <= pos ? last >= slot || slot > pos : last >= slot && slot > pos)
break;
pos = (pos + 1) & mask;
}
key[last] = curr;
value[last] = value[pos];
}
}
@Override
public boolean remove(final double k) {
if ((Double.doubleToLongBits(k) == 0)) {
if (containsNullKey)
return removeNullEntry();
return defRetValue;
}
double curr;
final double[] key = this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return defRetValue;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return removeEntry(pos);
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return defRetValue;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return removeEntry(pos);
}
}
@Override
public boolean get(final double k) {
if ((Double.doubleToLongBits(k) == 0))
return containsNullKey ? value[n] : defRetValue;
double curr;
final double[] key = this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return defRetValue;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return value[pos];
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return defRetValue;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return value[pos];
}
}
@Override
public boolean containsKey(final double k) {
if ((Double.doubleToLongBits(k) == 0))
return containsNullKey;
double curr;
final double[] key = this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return false;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return true;
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return false;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return true;
}
}
@Override
public boolean containsValue(final boolean v) {
final boolean value[] = this.value;
final double key[] = this.key;
if (containsNullKey && ((value[n]) == (v)))
return true;
for (int i = n; i-- != 0;)
if (!(Double.doubleToLongBits(key[i]) == 0) && ((value[i]) == (v)))
return true;
return false;
}
@Override
public boolean getOrDefault(final double k, final boolean defaultValue) {
if ((Double.doubleToLongBits(k) == 0))
return containsNullKey ? value[n] : defaultValue;
double curr;
final double[] key = this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return defaultValue;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return value[pos];
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return defaultValue;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return value[pos];
}
}
@Override
public boolean putIfAbsent(final double k, final boolean v) {
final int pos = find(k);
if (pos >= 0)
return value[pos];
insert(-pos - 1, k, v);
return defRetValue;
}
@Override
public boolean remove(final double k, final boolean v) {
if ((Double.doubleToLongBits(k) == 0)) {
if (containsNullKey && ((v) == (value[n]))) {
removeNullEntry();
return true;
}
return false;
}
double curr;
final double[] key = this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return false;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)) && ((v) == (value[pos]))) {
removeEntry(pos);
return true;
}
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return false;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)) && ((v) == (value[pos]))) {
removeEntry(pos);
return true;
}
}
}
@Override
public boolean replace(final double k, final boolean oldValue, final boolean v) {
final int pos = find(k);
if (pos < 0 || !((oldValue) == (value[pos])))
return false;
value[pos] = v;
return true;
}
@Override
public boolean replace(final double k, final boolean v) {
final int pos = find(k);
if (pos < 0)
return defRetValue;
final boolean oldValue = value[pos];
value[pos] = v;
return oldValue;
}
@Override
public boolean computeIfAbsent(final double k, final java.util.function.DoublePredicate mappingFunction) {
java.util.Objects.requireNonNull(mappingFunction);
final int pos = find(k);
if (pos >= 0)
return value[pos];
final boolean newValue = mappingFunction.test(k);
insert(-pos - 1, k, newValue);
return newValue;
}
@Override
public boolean computeIfAbsentNullable(final double k,
final java.util.function.DoubleFunction<? extends Boolean> mappingFunction) {
java.util.Objects.requireNonNull(mappingFunction);
final int pos = find(k);
if (pos >= 0)
return value[pos];
final Boolean newValue = mappingFunction.apply(k);
if (newValue == null)
return defRetValue;
final boolean v = (newValue).booleanValue();
insert(-pos - 1, k, v);
return v;
}
@Override
public boolean computeIfPresent(final double k,
final java.util.function.BiFunction<? super Double, ? super Boolean, ? extends Boolean> remappingFunction) {
java.util.Objects.requireNonNull(remappingFunction);
final int pos = find(k);
if (pos < 0)
return defRetValue;
final Boolean newValue = remappingFunction.apply(Double.valueOf(k), Boolean.valueOf(value[pos]));
if (newValue == null) {
if ((Double.doubleToLongBits(k) == 0))
removeNullEntry();
else
removeEntry(pos);
return defRetValue;
}
return value[pos] = (newValue).booleanValue();
}
@Override
public boolean compute(final double k,
final java.util.function.BiFunction<? super Double, ? super Boolean, ? extends Boolean> remappingFunction) {
java.util.Objects.requireNonNull(remappingFunction);
final int pos = find(k);
final Boolean newValue = remappingFunction.apply(Double.valueOf(k),
pos >= 0 ? Boolean.valueOf(value[pos]) : null);
if (newValue == null) {
if (pos >= 0) {
if ((Double.doubleToLongBits(k) == 0))
removeNullEntry();
else
removeEntry(pos);
}
return defRetValue;
}
boolean newVal = (newValue).booleanValue();
if (pos < 0) {
insert(-pos - 1, k, newVal);
return newVal;
}
return value[pos] = newVal;
}
@Override
public boolean merge(final double k, final boolean v,
final java.util.function.BiFunction<? super Boolean, ? super Boolean, ? extends Boolean> remappingFunction) {
java.util.Objects.requireNonNull(remappingFunction);
final int pos = find(k);
if (pos < 0) {
insert(-pos - 1, k, v);
return v;
}
final Boolean newValue = remappingFunction.apply(Boolean.valueOf(value[pos]), Boolean.valueOf(v));
if (newValue == null) {
if ((Double.doubleToLongBits(k) == 0))
removeNullEntry();
else
removeEntry(pos);
return defRetValue;
}
return value[pos] = (newValue).booleanValue();
}
@Override
public void clear() {
if (size == 0)
return;
size = 0;
containsNullKey = false;
Arrays.fill(key, (0));
}
@Override
public int size() {
return size;
}
@Override
public boolean isEmpty() {
return size == 0;
}
final class MapEntry implements Double2BooleanMap.Entry, Map.Entry<Double, Boolean> {
int index;
MapEntry(final int index) {
this.index = index;
}
MapEntry() {
}
@Override
public double getDoubleKey() {
return key[index];
}
@Override
public boolean getBooleanValue() {
return value[index];
}
@Override
public boolean setValue(final boolean v) {
final boolean oldValue = value[index];
value[index] = v;
return oldValue;
}
@Deprecated
@Override
public Double getKey() {
return Double.valueOf(key[index]);
}
@Deprecated
@Override
public Boolean getValue() {
return Boolean.valueOf(value[index]);
}
@Deprecated
@Override
public Boolean setValue(final Boolean v) {
return Boolean.valueOf(setValue((v).booleanValue()));
}
@SuppressWarnings("unchecked")
@Override
public boolean equals(final Object o) {
if (!(o instanceof Map.Entry))
return false;
Map.Entry<Double, Boolean> e = (Map.Entry<Double, Boolean>) o;
return (Double.doubleToLongBits(key[index]) == Double.doubleToLongBits((e.getKey()).doubleValue()))
&& ((value[index]) == ((e.getValue()).booleanValue()));
}
@Override
public int hashCode() {
return it.unimi.dsi.fastutil.HashCommon.double2int(key[index]) ^ (value[index] ? 1231 : 1237);
}
@Override
public String toString() {
return key[index] + "=>" + value[index];
}
}
private class MapIterator {
int pos = n;
int last = -1;
int c = size;
boolean mustReturnNullKey = Double2BooleanOpenHashMap.this.containsNullKey;
DoubleArrayList wrapped;
public boolean hasNext() {
return c != 0;
}
public int nextEntry() {
if (!hasNext())
throw new NoSuchElementException();
c--;
if (mustReturnNullKey) {
mustReturnNullKey = false;
return last = n;
}
final double key[] = Double2BooleanOpenHashMap.this.key;
for (;;) {
if (--pos < 0) {
last = Integer.MIN_VALUE;
final double k = wrapped.getDouble(-pos - 1);
int p = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k)) & mask;
while (!(Double.doubleToLongBits(k) == Double.doubleToLongBits(key[p])))
p = (p + 1) & mask;
return p;
}
if (!(Double.doubleToLongBits(key[pos]) == 0))
return last = pos;
}
}
private void shiftKeys(int pos) {
int last, slot;
double curr;
final double[] key = Double2BooleanOpenHashMap.this.key;
for (;;) {
pos = ((last = pos) + 1) & mask;
for (;;) {
if ((Double.doubleToLongBits(curr = key[pos]) == 0)) {
key[last] = (0);
return;
}
slot = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(curr)) & mask;
if (last <= pos ? last >= slot || slot > pos : last >= slot && slot > pos)
break;
pos = (pos + 1) & mask;
}
if (pos < last) {
if (wrapped == null)
wrapped = new DoubleArrayList(2);
wrapped.add(key[pos]);
}
key[last] = curr;
value[last] = value[pos];
}
}
public void remove() {
if (last == -1)
throw new IllegalStateException();
if (last == n) {
containsNullKey = false;
} else if (pos >= 0)
shiftKeys(last);
else {
Double2BooleanOpenHashMap.this.remove(wrapped.getDouble(-pos - 1));
last = -1;
return;
}
size--;
last = -1;
if (ASSERTS)
checkTable();
}
public int skip(final int n) {
int i = n;
while (i-- != 0 && hasNext())
nextEntry();
return n - i - 1;
}
}
private class EntryIterator extends MapIterator implements ObjectIterator<Double2BooleanMap.Entry> {
private MapEntry entry;
@Override
public MapEntry next() {
return entry = new MapEntry(nextEntry());
}
@Override
public void remove() {
super.remove();
entry.index = -1;
}
}
private class FastEntryIterator extends MapIterator implements ObjectIterator<Double2BooleanMap.Entry> {
private final MapEntry entry = new MapEntry();
@Override
public MapEntry next() {
entry.index = nextEntry();
return entry;
}
}
private final class MapEntrySet extends AbstractObjectSet<Double2BooleanMap.Entry> implements FastEntrySet {
@Override
public ObjectIterator<Double2BooleanMap.Entry> iterator() {
return new EntryIterator();
}
@Override
public ObjectIterator<Double2BooleanMap.Entry> fastIterator() {
return new FastEntryIterator();
}
@Override
public boolean contains(final Object o) {
if (!(o instanceof Map.Entry))
return false;
final Map.Entry<?, ?> e = (Map.Entry<?, ?>) o;
if (e.getKey() == null || !(e.getKey() instanceof Double))
return false;
if (e.getValue() == null || !(e.getValue() instanceof Boolean))
return false;
final double k = ((Double) (e.getKey())).doubleValue();
final boolean v = ((Boolean) (e.getValue())).booleanValue();
if ((Double.doubleToLongBits(k) == 0))
return Double2BooleanOpenHashMap.this.containsNullKey && ((value[n]) == (v));
double curr;
final double[] key = Double2BooleanOpenHashMap.this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return false;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return ((value[pos]) == (v));
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return false;
if ((Double.doubleToLongBits(k) == Double.doubleToLongBits(curr)))
return ((value[pos]) == (v));
}
}
@Override
public boolean remove(final Object o) {
if (!(o instanceof Map.Entry))
return false;
final Map.Entry<?, ?> e = (Map.Entry<?, ?>) o;
if (e.getKey() == null || !(e.getKey() instanceof Double))
return false;
if (e.getValue() == null || !(e.getValue() instanceof Boolean))
return false;
final double k = ((Double) (e.getKey())).doubleValue();
final boolean v = ((Boolean) (e.getValue())).booleanValue();
if ((Double.doubleToLongBits(k) == 0)) {
if (containsNullKey && ((value[n]) == (v))) {
removeNullEntry();
return true;
}
return false;
}
double curr;
final double[] key = Double2BooleanOpenHashMap.this.key;
int pos;
if ((Double.doubleToLongBits(
curr = key[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k))
& mask]) == 0))
return false;
if ((Double.doubleToLongBits(curr) == Double.doubleToLongBits(k))) {
if (((value[pos]) == (v))) {
removeEntry(pos);
return true;
}
return false;
}
while (true) {
if ((Double.doubleToLongBits(curr = key[pos = (pos + 1) & mask]) == 0))
return false;
if ((Double.doubleToLongBits(curr) == Double.doubleToLongBits(k))) {
if (((value[pos]) == (v))) {
removeEntry(pos);
return true;
}
}
}
}
@Override
public int size() {
return size;
}
@Override
public void clear() {
Double2BooleanOpenHashMap.this.clear();
}
@Override
public void forEach(final Consumer<? super Double2BooleanMap.Entry> consumer) {
if (containsNullKey)
consumer.accept(new AbstractDouble2BooleanMap.BasicEntry(key[n], value[n]));
for (int pos = n; pos-- != 0;)
if (!(Double.doubleToLongBits(key[pos]) == 0))
consumer.accept(new AbstractDouble2BooleanMap.BasicEntry(key[pos], value[pos]));
}
@Override
public void fastForEach(final Consumer<? super Double2BooleanMap.Entry> consumer) {
final AbstractDouble2BooleanMap.BasicEntry entry = new AbstractDouble2BooleanMap.BasicEntry();
if (containsNullKey) {
entry.key = key[n];
entry.value = value[n];
consumer.accept(entry);
}
for (int pos = n; pos-- != 0;)
if (!(Double.doubleToLongBits(key[pos]) == 0)) {
entry.key = key[pos];
entry.value = value[pos];
consumer.accept(entry);
}
}
}
@Override
public FastEntrySet double2BooleanEntrySet() {
if (entries == null)
entries = new MapEntrySet();
return entries;
}
private final class KeyIterator extends MapIterator implements DoubleIterator {
public KeyIterator() {
super();
}
@Override
public double nextDouble() {
return key[nextEntry()];
}
}
private final class KeySet extends AbstractDoubleSet {
@Override
public DoubleIterator iterator() {
return new KeyIterator();
}
@Override
public void forEach(final java.util.function.DoubleConsumer consumer) {
if (containsNullKey)
consumer.accept(key[n]);
for (int pos = n; pos-- != 0;) {
final double k = key[pos];
if (!(Double.doubleToLongBits(k) == 0))
consumer.accept(k);
}
}
@Override
public int size() {
return size;
}
@Override
public boolean contains(double k) {
return containsKey(k);
}
@Override
public boolean remove(double k) {
final int oldSize = size;
Double2BooleanOpenHashMap.this.remove(k);
return size != oldSize;
}
@Override
public void clear() {
Double2BooleanOpenHashMap.this.clear();
}
}
@Override
public DoubleSet keySet() {
if (keys == null)
keys = new KeySet();
return keys;
}
private final class ValueIterator extends MapIterator implements BooleanIterator {
public ValueIterator() {
super();
}
@Override
public boolean nextBoolean() {
return value[nextEntry()];
}
}
@Override
public BooleanCollection values() {
if (values == null)
values = new AbstractBooleanCollection() {
@Override
public BooleanIterator iterator() {
return new ValueIterator();
}
@Override
public int size() {
return size;
}
@Override
public boolean contains(boolean v) {
return containsValue(v);
}
@Override
public void clear() {
Double2BooleanOpenHashMap.this.clear();
}
@Override
public void forEach(final BooleanConsumer consumer) {
if (containsNullKey)
consumer.accept(value[n]);
for (int pos = n; pos-- != 0;)
if (!(Double.doubleToLongBits(key[pos]) == 0))
consumer.accept(value[pos]);
}
};
return values;
}
public boolean trim() {
return trim(size);
}
public boolean trim(final int n) {
final int l = HashCommon.nextPowerOfTwo((int) Math.ceil(n / f));
if (l >= this.n || size > maxFill(l, f))
return true;
try {
rehash(l);
} catch (OutOfMemoryError cantDoIt) {
return false;
}
return true;
}
protected void rehash(final int newN) {
final double key[] = this.key;
final boolean value[] = this.value;
final int mask = newN - 1;
final double newKey[] = new double[newN + 1];
final boolean newValue[] = new boolean[newN + 1];
int i = n, pos;
for (int j = realSize(); j-- != 0;) {
while ((Double.doubleToLongBits(key[--i]) == 0));
if (!(Double.doubleToLongBits(
newKey[pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(key[i]))
& mask]) == 0))
while (!(Double.doubleToLongBits(newKey[pos = (pos + 1) & mask]) == 0));
newKey[pos] = key[i];
newValue[pos] = value[i];
}
newValue[newN] = value[n];
n = newN;
this.mask = mask;
maxFill = maxFill(n, f);
this.key = newKey;
this.value = newValue;
}
@Override
public Double2BooleanOpenHashMap clone() {
Double2BooleanOpenHashMap c;
try {
c = (Double2BooleanOpenHashMap) super.clone();
} catch (CloneNotSupportedException cantHappen) {
throw new InternalError();
}
c.keys = null;
c.values = null;
c.entries = null;
c.containsNullKey = containsNullKey;
c.key = key.clone();
c.value = value.clone();
return c;
}
@Override
public int hashCode() {
int h = 0;
for (int j = realSize(), i = 0, t = 0; j-- != 0;) {
while ((Double.doubleToLongBits(key[i]) == 0))
i++;
t = it.unimi.dsi.fastutil.HashCommon.double2int(key[i]);
t ^= (value[i] ? 1231 : 1237);
h += t;
i++;
}
if (containsNullKey)
h += (value[n] ? 1231 : 1237);
return h;
}
private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOException {
final double key[] = this.key;
final boolean value[] = this.value;
final MapIterator i = new MapIterator();
s.defaultWriteObject();
for (int j = size, e; j-- != 0;) {
e = i.nextEntry();
s.writeDouble(key[e]);
s.writeBoolean(value[e]);
}
}
private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException {
s.defaultReadObject();
n = arraySize(size, f);
maxFill = maxFill(n, f);
mask = n - 1;
final double key[] = this.key = new double[n + 1];
final boolean value[] = this.value = new boolean[n + 1];
double k;
boolean v;
for (int i = size, pos; i-- != 0;) {
k = s.readDouble();
v = s.readBoolean();
if ((Double.doubleToLongBits(k) == 0)) {
pos = n;
containsNullKey = true;
} else {
pos = (int) it.unimi.dsi.fastutil.HashCommon.mix(Double.doubleToRawLongBits(k)) & mask;
while (!(Double.doubleToLongBits(key[pos]) == 0))
pos = (pos + 1) & mask;
}
key[pos] = k;
value[pos] = v;
}
if (ASSERTS)
checkTable();
}
private void checkTable() {
}
}