mirror of
https://github.com/DanilaFe/abacus
synced 2024-11-16 07:33:09 -08:00
116 lines
2.8 KiB
Java
Executable File
116 lines
2.8 KiB
Java
Executable File
package org.nwapw.abacus.number;
|
|
|
|
/**
|
|
* An implementation of NumberInterface using a double.
|
|
*/
|
|
public class NaiveNumber extends NumberInterface {
|
|
|
|
/**
|
|
* The number zero.
|
|
*/
|
|
public static final NaiveNumber ZERO = new NaiveNumber(0);
|
|
/**
|
|
* The number one.
|
|
*/
|
|
public static final NaiveNumber ONE = new NaiveNumber(1);
|
|
/**
|
|
* The value of this number.
|
|
*/
|
|
private double value;
|
|
|
|
/**
|
|
* Creates a new NaiveNumber with the given string.
|
|
*
|
|
* @param value the value, which will be parsed as a double.
|
|
*/
|
|
public NaiveNumber(String value) {
|
|
this(Double.parseDouble(value));
|
|
}
|
|
|
|
/**
|
|
* Creates a new NaiveNumber with the given value.
|
|
*
|
|
* @param value the value to use.
|
|
*/
|
|
public NaiveNumber(double value) {
|
|
this.value = value;
|
|
}
|
|
|
|
@Override
|
|
public int getMaxPrecision() {
|
|
return 18;
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface multiplyInternal(NumberInterface multiplier) {
|
|
return new NaiveNumber(value * ((NaiveNumber) multiplier).value);
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface divideInternal(NumberInterface divisor) {
|
|
return new NaiveNumber(value / ((NaiveNumber) divisor).value);
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface addInternal(NumberInterface summand) {
|
|
return new NaiveNumber(value + ((NaiveNumber) summand).value);
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface subtractInternal(NumberInterface subtrahend) {
|
|
return new NaiveNumber(value - ((NaiveNumber) subtrahend).value);
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface negateInternal() {
|
|
return new NaiveNumber(-value);
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(NumberInterface number) {
|
|
NaiveNumber num = (NaiveNumber) number;
|
|
return Double.compare(value, num.value);
|
|
}
|
|
|
|
@Override
|
|
public int signum() {
|
|
return this.compareTo(ZERO);
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface ceilingInternal() {
|
|
return new NaiveNumber(Math.ceil(value));
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface floorInternal() {
|
|
return new NaiveNumber(Math.floor(value));
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface fractionalPartInternal() {
|
|
return new NaiveNumber(value - Math.floor(value));
|
|
}
|
|
|
|
@Override
|
|
public int intValue() {
|
|
return (int) value;
|
|
}
|
|
|
|
@Override
|
|
public NumberInterface promoteToInternal(Class<? extends NumberInterface> toClass) {
|
|
if (toClass == this.getClass()) return this;
|
|
else if (toClass == PreciseNumber.class) {
|
|
return new PreciseNumber(Double.toString(value));
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public String toString() {
|
|
double shiftBy = Math.pow(10, 10);
|
|
return Double.toString(Math.round(value * shiftBy) / shiftBy);
|
|
}
|
|
|
|
}
|
|
|