mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-08-29 13:20:32 +00:00
correct BinaryColumn boolean combination indices
This commit is contained in:
@@ -109,7 +109,7 @@ public class BinaryColumn {
|
|||||||
if(that.data.length > index) {
|
if(that.data.length > index) {
|
||||||
right = this.data[index];
|
right = this.data[index];
|
||||||
}
|
}
|
||||||
next.data[i] = operator.apply(left, right);
|
next.data[index] = operator.apply(left, right);
|
||||||
}
|
}
|
||||||
|
|
||||||
return next;
|
return next;
|
||||||
|
|||||||
Reference in New Issue
Block a user