This commit is contained in:
serso
2016-02-25 17:45:28 +01:00
parent 828f9fa07b
commit 13f12d5d14
5 changed files with 78 additions and 120 deletions

View File

@@ -1,5 +1,11 @@
package jscl.math;
import java.math.BigInteger;
import java.util.Collections;
import java.util.Set;
import javax.annotation.Nonnull;
import jscl.JsclMathEngine;
import jscl.math.function.Constant;
import jscl.math.function.Constants;
@@ -11,12 +17,6 @@ import jscl.math.numeric.Real;
import jscl.math.numeric.Vector;
import jscl.mathml.MathML;
import java.math.BigInteger;
import java.util.Collections;
import java.util.Set;
import javax.annotation.Nonnull;
public final class NumericWrapper extends Generic implements INumeric<NumericWrapper> {
@Nonnull
@@ -185,7 +185,7 @@ public final class NumericWrapper extends Generic implements INumeric<NumericWra
}
public Generic substitute(@Nonnull Variable variable, Generic generic) {
return null;
return this;
}
public Generic expand() {