fix a bug in BitVectorVariable.copyState() involving empty vectors

This commit is contained in:
sjfink 2013-03-18 08:40:25 -07:00
parent 7c3e13d09f
commit c9e1b2e587
1 changed files with 2 additions and 0 deletions

View File

@ -42,6 +42,8 @@ public class BitVectorVariable extends AbstractVariable<BitVectorVariable> {
}
if (other.V != null) {
V.copySet(other.V);
} else {
V = null;
}
}