Opened 18 years ago

Last modified 17 years ago

#44 closed defect (fixed)

Lookup of functions through imports does not work.

Reported by: petar Owned by: petar
Priority: critical Milestone:
Component: Version:
Keywords: Cc: petar, adrpo

Description


Change History (2)

comment:1 Changed 18 years ago by petar

Lookup of functions through imports does not work.

Minmial example:

model imptest

import Modelica_Math_exp = Modelica.Math.exp;
Real x;

equation

der(x)=Modelica_Math_exp(-x);

end imptest;

comment:2 Changed 17 years ago by adrpo

This seems to work now:
"fclass imptest
Real x;
equation

der(x) = Modelica.Math.exp(-x);

end imptest;
"
record

resultFile = "imptest_res.plt"

end record

I'll close the bug.

Note: See TracTickets for help on using tickets.