generateOutputs method
Generate the output vectors from the array
Implementation
void generateOutputs() {
for (var row = 0; row < _array.rows; row++) {
addOutput('row_$row', width: _array.partialProducts[row].length) <=
_array.partialProducts[row].rswizzle();
}
_outputsGenerated = true;
}