﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3014	known vars break initialization	Lennart Ochel	Lennart Ochel	"The initialization depends on known variables, but they are calculated after the actual initialization. Hence, the initialization is wrong for certain cases.

The following example can be used as test case:
{{{#!mo
model foo
  Real a ""= -1"";
  Real b ""= -2"";
  Real x(start=1) ""= -2"";
initial equation
  a = x+1;
  x = 2*a;
  b = 2*a;
equation
  der(x) = 1;
  der(a) = sin(time);
  der(b) = cos(time);
end foo;
}}}"	defect	closed	high	1.9.4	Backend	trunk	fixed		Willi Braun
