Opened 8 years ago

Closed 7 years ago

#4036 closed defect (fixed)

fmu translation fails with debug flag execstat

Reported by: Willi Braun Owned by: Willi Braun
Priority: high Milestone: 1.13.0
Component: Backend Version: v1.11.0
Keywords: fmi Cc:

Description

Following script fails, but works without the debug flag:

loadString("
model fooPy
  Real x,y,z;
  input Real u;
equation
  der(x) = u+y*z;
  y = sin(z);
  z = 3*y+time;
end fooPy;
");
getErrorString();
setDebugFlags("execstat");

translateModelFMU(fooPy);
getErrorString();

Change History (3)

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

Milestone: 1.11.01.12.0

Milestone moved to 1.12.0 due to 1.11.0 already being released.

comment:2 by Francesco Casella, 7 years ago

Milestone: 1.12.01.13.0

Milestone moved to 1.13.0 due to 1.12.0 already being released.

comment:3 by Willi Braun, 7 years ago

Resolution: fixed
Status: newclosed

Fixed in the meanwhile.

Note: See TracTickets for help on using tickets.