Opened 11 years ago

Last modified 11 years ago

#2529 closed defect

Vectorization of unknown dimensions fails — at Version 1

Reported by: Martin Sjölund Owned by: somebody
Priority: high Milestone: 1.9.1
Component: Frontend Version: trunk
Keywords: Cc:

Description (last modified by Martin Sjölund)

Vectorization fails for the following case:

function f
  input Integer m;
  output Real y;
protected
  parameter Real phi[m] = linspace(0,1,m);
  parameter Real t[m] = cos(phi);
algorithm
  y := sum(t);
end f;

model M
  Real r = f(integer(time));
end M;

Change History (1)

comment:1 by Martin Sjölund, 11 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.