getAbsolute method
Return the Logic at the absolute position (row
, col
).
Implementation
Logic getAbsolute(int row, int col) {
final product = partialProducts[row];
while (product.length <= col) {
product.add(Const(0));
}
return partialProducts[row][col - rowShift[row]];
}