1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-07-24 06:12:23 -07:00

Add comment to PreciseNumber.

This commit is contained in:
Danila Fedorin 2017-08-01 10:49:50 -07:00
parent 4be4ffd57a
commit 0db9e39e63

View File

@ -1,9 +1,12 @@
package org.nwapw.abacus.number;
import java.math.BigDecimal;
import java.math.MathContext;
import java.math.RoundingMode;
/**
* A number that uses a BigDecimal to store its value,
* leading to infinite possible precision.
*/
public class PreciseNumber implements NumberInterface {
/**