Skip to content

Commit

Permalink
Fix isPlusTimesPower() method in B2.Divide and B2.Subtract
Browse files Browse the repository at this point in the history
  • Loading branch information
axkr committed Dec 25, 2023
1 parent af5694a commit 7e06942
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public boolean isPlus() {

@Override
public boolean isPlusTimesPower() {
return true;
return false;
}

@Override
Expand Down Expand Up @@ -622,7 +622,7 @@ public boolean isPlus() {

@Override
public boolean isPlusTimesPower() {
return true;
return false;
}

@Override
Expand Down

0 comments on commit 7e06942

Please sign in to comment.