﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4127	Losing Loop with ArrayEquations??	Vitalij Ruge	somebody	"{{{
loadString(""
model foo
  function f
    input Real[2] x;
    output Real[2] y;
  algorithm
    y[1] := 2*x[1]^2 + 1; y[2] := 3*x[2]^2 + 2;
  end f;

  Real[ 2] y;
equation
  y = f(y); //Loop !?
end foo;

"");

getErrorString();

simulate(foo);
getErrorString();

val(y[1], {0, 0.5, 1});
}}}

return wrong results.
The loop for `y = f(y)` is missing.
"	defect	new	high	Future	Backend				Willi Braun
