1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-27 09:05:19 +00:00

Add precision getter to NaiveNumber.

This commit is contained in:
2017-07-24 13:43:51 -07:00
parent 9345faf7d3
commit aec9953af2
2 changed files with 6 additions and 0 deletions

View File

@@ -8,6 +8,11 @@ public class NaiveNumber implements Number {
this.value = value;
}
@Override
public int precision() {
return 4;
}
@Override
public Number multiply(Number multiplier) {
if(!(multiplier instanceof NaiveNumber)) throw new IllegalArgumentException();