We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3a2862 commit a4089b1Copy full SHA for a4089b1
src/main/java/com/github/javabdd/JFactory.java
@@ -1099,8 +1099,11 @@ private static class BddCache {
1099
BddCache copy() {
1100
BddCache that = new BddCache();
1101
boolean is_d = this.table instanceof BddCacheDataD[];
1102
+ boolean is_bi = this.table instanceof BddCacheDataBI[];
1103
if (is_d) {
1104
that.table = new BddCacheDataD[this.table.length];
1105
+ } else if (is_bi) {
1106
+ that.table = new BddCacheDataBI[this.table.length];
1107
} else {
1108
that.table = new BddCacheDataI[this.table.length];
1109
}
0 commit comments