Skip to content

Commit

Permalink
missed some print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
desmonddak committed Feb 3, 2025
1 parent a016ad4 commit 628fb15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,6 @@ class FloatingPointAdderRound extends FloatingPointAdder {
final infExponent = outputSum.inf(sign: largerSignFlopped).exponent;

final inf = outputSum.inf(sign: largerSignFlopped);
final infExponent = inf.exponent;

final realIsInfRPath =
exponentRPath.eq(infExponent).named('realIsInfRPath');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ void main() {
exponentWidth: exponentWidth, mantissaWidth: mantissaWidth);
fp1.put(0);
fp2.put(0);
final fv1 = FloatingPointValue.ofBinaryStrings('0', '1100', '0000');
final fv2 = FloatingPointValue.ofBinaryStrings('1', '1100', '0000');
final fv1 = FloatingPointValue.ofBinaryStrings('0', '1110', '1111');
final fv2 = FloatingPointValue.ofBinaryStrings('0', '1110', '0000');

fp1.put(fv1);
fp2.put(fv2);
Expand Down

0 comments on commit 628fb15

Please sign in to comment.