getAbsolute method

Logic getAbsolute(
  1. int row,
  2. int col
)

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]];
}