Ticket #1101: test.mo

File test.mo, 146 bytes (added by TimoPenndorf, 16 years ago)
Line 
1model Test
2 parameter Real A;
3 parameter Real B;
4 Real x
5 "evaluated to 0 if A < B";
6equation
7 x = if (A < B) then 0 else 1;
8end Test;