﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4098	inconsistent code for array equation	Vitalij Ruge	somebody	"the following example include the same formulatin but 
generate different flatt model

{{{#!modelica
model foo
  function f
    input Real x;
    output Real[2] y;
    output Real[2] z;
  algorithm
    y[1] := 2*x; y[2] := 3*x;
    z[1] := y[1]*y[2]; z[2] := 3*x;
  end f;
  Real [2] y1;
  Real [2] y2;
  equation
  (,y1) = f(time);
  y2 = f(time).z;
  
end foo;
}}}
// y2: 2 x single equation
// y1: complex equation

It's would be greate if we can standardize this.

"	defect	new	high	Future	Frontend			array equation	Mahder Alemseged Gebremedhin
