﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2923	Expressions get simplified even if flag noSimplify is used	Lennart Ochel	Adrian Pop	"I know the flag noSimplify is a very old one. This could either mean that it is very well tested or that it is long-forgotten and no one cares about it. I can see that is does something in some cases, but it does not what I expect for some simple examples. Please check out the following one:
{{{#!mo
model foo
  Real a;
  Real b;
equation
  a = sin(time);
  b = 0.3 * a + 0.7 * a;
end foo;
}}}

If I instantiate model foo without using the flag noSimplify, I get the expected result:
{{{#!mo
class foo
  Real a;
  Real b;
equation
  a = sin(time);
  b = a;
end foo;
}}}

But, if I run the same with noSimplify enabled, I still get the same result. I would expect that in that case the expressions should remain as they are written in the model."	defect	new	high	Future	Frontend	trunk			jan.hagemann@…
