Opened 16 years ago

Last modified 15 years ago

#1043 closed defect (fixed)

Checking for type mismatch (from MathCore)

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

Description

We need to check for type mismatch.

e.g. the following model is illegal and a check confirms that:

model TestType
   parameter Integer red = 0.2;
end TestType;

The following model is also illegal but the check misses that.

model TestType2
   extends ColorData;
   parameter Real blue = 0.6;
   parameter Integer red = 0.2;
   Real green;
equation 
   red + blue + green=1;
end TestType2;

record ColorData
  parameter Real red = 0.2;
  parameter Real blue = 0.6;
  Real   green;
end ColorData;

Change History (1)

comment:1 Changed 15 years ago by brugard

Note: See TracTickets for help on using tickets.