public Decision<SetVar> computeDecision(SetVar s) {
if (s == null) {
return null;
}
assert !s.isInstantiated();
FastDecisionSet d = pool.getE();
if (d == null) {
d = new FastDecisionSet(pool);
}
d.set(s, valSelector.selectValue(s), operator);
return d;
}