﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4847	Possible ExpressionSimplify error	johti139@…	Per Östlund	"
DAE seem to optimise
{{{
function integerArithmeticTest2
  input Integer x;
  output Integer y;
  algorithm
    y := x + x +x;
end integerArithmeticTest2;
}}}
To 
{{{
function simpleTest.integerArithmeticTest2
  input Integer x;
  output Integer y;
algorithm
  y := 3.0 * x;
end simpleTest.integerArithmeticTest2;
}}}

Leading to an implicit cast when converted into C-code. "	defect	closed	normal	Future	Frontend		fixed	DAE,ExpressionSimplify	Martin Sjölund
