mirror of
https://github.com/DanilaFe/abacus
synced 2024-12-23 07:50:09 -08:00
Fix intPow loop.
This commit is contained in:
parent
46da95e7b5
commit
6f5a27c418
|
@ -44,7 +44,7 @@ public class NaiveNumber implements NumberInterface {
|
||||||
@Override
|
@Override
|
||||||
public NumberInterface intPow(int exponent) {
|
public NumberInterface intPow(int exponent) {
|
||||||
NumberInterface power = this;
|
NumberInterface power = this;
|
||||||
for(int currentExponent = 1; currentExponent <= exponent; currentExponent++){
|
for(int currentExponent = 1; currentExponent < exponent; currentExponent++){
|
||||||
power = power.multiply(this);
|
power = power.multiply(this);
|
||||||
}
|
}
|
||||||
return power;
|
return power;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user