﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2874	Implement threaded for-loops in MetaModelica	Per Östlund	Martin Sjölund	"We currently have threaded reductions, it would be nice to have the equivalent for-loops also (syntax is only a suggestion):
{{{#!mo
for threaded e1 in list1, e2 in list2 loop
  // Iterates simultaneously over list1 and list2.
end for;
}}}
=>
{{{#!mo
class M
  Real r(start = 0.0);
algorithm
  for i in 1:20 loop
    for j in 1:30 loop
      r := r + /*Real*/(i) + /*Real*/(j);
    end for;
  end for;
end M;
}}}"	enhancement	new	high	Bootstrapping	MetaModelica	trunk			
