Opened 12 years ago
Last modified 12 years ago
#2289 closed defect
instantiation of a very simple model failed — at Version 1
Reported by: | Lennart Ochel | Owned by: | somebody |
---|---|---|---|
Priority: | blocker | Milestone: | 1.9.0 |
Component: | Frontend | Version: | trunk |
Keywords: | Cc: |
Description (last modified by ) ¶
The following model fails during instantiation:
model foo parameter Integer N = 0; Real a[N]; algorithm if N > 0 then a[1] := 1.0; for i in 2:N loop a[i] := a[i-1] + 1.0; end for; end if; end foo;
output:
Translation | 0:0-0:0 | Error occurred while flattening model foo Translation | 6:5-6:16 | Variable a[1] not found in scope foo. Translation | 6:5-6:16 | Illegal subscript [1] for dimensions 0 in component <NO COMPONENT>. Scripting | 0:0-0:0 | Instantiation of foo failed.
This should be fixed as soon as possible, because it blocks the Petri net library.
Note:
See TracTickets
for help on using tickets.