Search in sources :

Example 1 with IDoubleValue

use of org.matheclipse.parser.client.eval.IDoubleValue in project symja_android_library by axkr.

the class EvalDoubleTestCase method testEval004.

public void testEval004() {
    try {
        IDoubleValue vd = new DoubleVariable(3.0);
        DoubleEvaluator engine = new DoubleEvaluator();
        engine.defineVariable("x", vd);
        double d = engine.evaluate("x^2+3");
        assertEquals(Double.valueOf(d).toString(), "12.0");
        vd.setValue(4);
        d = engine.evaluate();
        assertEquals(Double.valueOf(d).toString(), "19.0");
    } catch (Exception e) {
        e.printStackTrace();
        assertEquals("", e.getMessage());
    }
}
Also used : DoubleEvaluator(org.matheclipse.parser.client.eval.DoubleEvaluator) IDoubleValue(org.matheclipse.parser.client.eval.IDoubleValue) DoubleVariable(org.matheclipse.parser.client.eval.DoubleVariable) MathException(org.matheclipse.parser.client.math.MathException)

Example 2 with IDoubleValue

use of org.matheclipse.parser.client.eval.IDoubleValue in project symja_android_library by axkr.

the class EvalDoubleTestCase method testEval005.

public void testEval005() {
    try {
        IDoubleValue vd = new DoubleVariable(3.0);
        DoubleEvaluator engine = new DoubleEvaluator();
        engine.defineVariable("x", vd);
        double d = engine.evaluate("x^2*x^2-1");
        assertEquals(Double.valueOf(d).toString(), "80.0");
        vd.setValue(4);
        d = engine.evaluate();
        assertEquals(Double.valueOf(d).toString(), "255.0");
    } catch (Exception e) {
        e.printStackTrace();
        assertEquals("", e.getMessage());
    }
}
Also used : DoubleEvaluator(org.matheclipse.parser.client.eval.DoubleEvaluator) IDoubleValue(org.matheclipse.parser.client.eval.IDoubleValue) DoubleVariable(org.matheclipse.parser.client.eval.DoubleVariable) MathException(org.matheclipse.parser.client.math.MathException)

Example 3 with IDoubleValue

use of org.matheclipse.parser.client.eval.IDoubleValue in project symja_android_library by axkr.

the class EvalDoubleCallbackTestCase method testEval004.

public void testEval004() {
    try {
        IDoubleValue vd = new DoubleVariable(3.0);
        DoubleEvaluator engine = new DoubleEvaluator();
        engine.defineVariable("x", vd);
        double d = engine.evaluate("x^2+3");
        assertEquals(Double.valueOf(d).toString(), "12.0");
        vd.setValue(4);
        d = engine.evaluate();
        assertEquals(Double.valueOf(d).toString(), "19.0");
    } catch (Exception e) {
        e.printStackTrace();
        assertEquals("", e.getMessage());
    }
}
Also used : DoubleEvaluator(org.matheclipse.parser.client.eval.DoubleEvaluator) IDoubleValue(org.matheclipse.parser.client.eval.IDoubleValue) DoubleVariable(org.matheclipse.parser.client.eval.DoubleVariable) MathException(org.matheclipse.parser.client.math.MathException)

Example 4 with IDoubleValue

use of org.matheclipse.parser.client.eval.IDoubleValue in project symja_android_library by axkr.

the class EvalDoubleTestCase method testEval007.

public void testEval007() {
    try {
        DoubleEvaluator engine = new DoubleEvaluator();
        // IDoubleValue vdi = new DoubleVariable(1.0);
        // engine.defineVariable("$i", vdi);
        IDoubleValue vd = new DoubleVariable(3.0);
        engine.defineVariable("$1", vd);
        IDoubleValue vd2 = new DoubleVariable(-4.0);
        engine.defineVariable("$2", vd2);
        double d = engine.evaluate("$i = $1+$2; If[$i>0, 1, -1]");
        Assert.assertEquals(d, -1d, DoubleEvaluator.EPSILON);
        vd2.setValue(4.0);
        d = engine.evaluate();
        Assert.assertEquals(d, 1d, DoubleEvaluator.EPSILON);
    } catch (Exception e) {
        e.printStackTrace();
        Assert.assertEquals("", e.getMessage());
    }
}
Also used : DoubleEvaluator(org.matheclipse.parser.client.eval.DoubleEvaluator) IDoubleValue(org.matheclipse.parser.client.eval.IDoubleValue) DoubleVariable(org.matheclipse.parser.client.eval.DoubleVariable) MathException(org.matheclipse.parser.client.math.MathException)

Example 5 with IDoubleValue

use of org.matheclipse.parser.client.eval.IDoubleValue in project symja_android_library by axkr.

the class EvalDoubleCallbackTestCase method testEval005.

public void testEval005() {
    try {
        IDoubleValue vd = new DoubleVariable(3.0);
        DoubleEvaluator engine = new DoubleEvaluator();
        engine.defineVariable("x", vd);
        double d = engine.evaluate("x^2*x^2-1");
        assertEquals(Double.valueOf(d).toString(), "80.0");
        vd.setValue(4);
        d = engine.evaluate();
        assertEquals(Double.valueOf(d).toString(), "255.0");
    } catch (Exception e) {
        e.printStackTrace();
        assertEquals("", e.getMessage());
    }
}
Also used : DoubleEvaluator(org.matheclipse.parser.client.eval.DoubleEvaluator) IDoubleValue(org.matheclipse.parser.client.eval.IDoubleValue) DoubleVariable(org.matheclipse.parser.client.eval.DoubleVariable) MathException(org.matheclipse.parser.client.math.MathException)

Aggregations

DoubleEvaluator (org.matheclipse.parser.client.eval.DoubleEvaluator)6 DoubleVariable (org.matheclipse.parser.client.eval.DoubleVariable)6 IDoubleValue (org.matheclipse.parser.client.eval.IDoubleValue)6 MathException (org.matheclipse.parser.client.math.MathException)6