/*
Copyright 2014 Julia s.r.l.
This file is part of BeeDeeDee.
BeeDeeDee is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
BeeDeeDee is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with BeeDeeDee. If not, see <http://www.gnu.org/licenses/>.
*/
package com.juliasoft.beedeedee.factories;
import java.util.BitSet;
/**
* The cache for existential and universal quantification.
*/
class QuantCache {
private final static int ENTRY_SIZE = 2;
private final int[] cache;
private final BitSet[] varss;
private final int size;
private final Object[] locks = new Object[100];
/**
* Constructs a QuantCache of the given size.
*
* @param size the size of the cache
*/
QuantCache(int size) {
this.size = size;
int arraySize = size * ENTRY_SIZE;
this.cache = new int[arraySize];
for (int i = 0; i < arraySize; i += ENTRY_SIZE)
cache[i] = -1;
this.varss = new BitSet[arraySize];
for (int pos = 0; pos < locks.length; pos++)
locks[pos] = new Object();
}
/**
* Clears all the entries in this cache.
*/
void clear() {
int arraySize = size * ENTRY_SIZE;
for (int i = 0; i < arraySize; i += ENTRY_SIZE)
cache[i] = -1;
}
/**
* Gets an entry from this cache.
*
* @param exist true if it is an existential quantification result
* @param bdd the operand bdd index
* @param vars the var set
* @param hashCodeOfVs the hashCode of the vars set
* @return the index of the result, or -1 if not found
*/
int get(boolean exist, int bdd, BitSet vars, int hashCodeOfVs) {
if (exist)
bdd = -bdd;
int pos = hash(bdd, hashCodeOfVs);
// avoid double call to expensive equals on arrays!
BitSet oldVarss = varss[pos];
if (cache[pos] == bdd && (oldVarss == vars || oldVarss.equals(vars)))
synchronized (locks[pos % locks.length]) {
return cache[pos] == bdd && oldVarss == varss[pos++] ? cache[pos] : -1;
}
return -1;
}
private int hash(int bdd, int hashCodeOfVs) {
return ENTRY_SIZE * (Math.abs(bdd ^ hashCodeOfVs) % size);
}
/**
* Puts an entry into this cache.
*
* @param exist true if it is an existential quantification result
* @param bdd the operand bdd index
* @param vars the var set
* @param hashCodeOfVs the hashCode of the vars set
* @param result the computation result
*/
void put(boolean exist, int bdd, BitSet vars, int hashCodeOfVs, int result) {
if (exist)
bdd = -bdd;
int pos = hash(bdd, hashCodeOfVs);
synchronized (locks[pos % locks.length]) {
varss[pos] = vars;
cache[pos++] = bdd;
cache[pos] = result;
}
}
}