Change precision of NaiveNumber to 15.

This commit is contained in:
Arthur Drobot 2017-07-26 15:24:24 -07:00
parent 356084ef61
commit aae7e678dd
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class NaiveNumber implements NumberInterface {
@Override
public int precision() {
return 10;
return 15;
}
@Override