[ 
https://issues.apache.org/jira/browse/JEXL-242?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16222139#comment-16222139
 ] 

Dmitri Blinov commented on JEXL-242:
------------------------------------

I have no idea how you checked this. Try checking with the following code
{code}
double a = -40.05;
double b = -8.01;
final JexlContext context = new MapContext();
context.set("a",a);
context.set("b",b);
JexlEngine JEXL_ENGINE = new JexlBuilder().strict(true).silent(true).create();
JexlExpression jsp = JEXL_ENGINE.createExpression("a+b");
double c = (Double) jsp.evaluate(context);
if (c != a + b) {
  // Add your code to report a problem
}
{code}

> invalid jexl calculation while doing sum for particular value
> -------------------------------------------------------------
>
>                 Key: JEXL-242
>                 URL: https://issues.apache.org/jira/browse/JEXL-242
>             Project: Commons JEXL
>          Issue Type: Bug
>    Affects Versions: 3.1
>            Reporter: vikas garg
>            Priority: Blocker
>
> For a particular value of 0.05 , jexl is returning value unxepectedly
> I have face an issue with following calcualtion:
> Double a = -40.05;
> Double b = -8.01;
> final JexlContext context = new MapContext();
> context.set("a",a);
> context.set("b",b);
> JexlEngine JEXL_ENGINE = new JexlBuilder().strict(true).silent(true).create();
> JexlExpression jsp = JEXL_ENGINE.createExpression("a+b");
> Double c = jsp.evaluate(context);
> The value returned by evaluation is -48.059999999999995 instead of -48.06
> There seems some precision issue in calculation



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to