Changes between Version 1 and Version 2 of Ticket #3138, comment 5
- Timestamp:
- 2015-02-07T15:13:21Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3138, comment 5
v1 v2 3 3 The following example shows that there are no assertions for "constant" parameters: 4 4 {{{#!mo 5 model testInit 5 model testInit2 6 6 parameter Real p(min=0.5, max=2) = p2; 7 7 parameter Real p2(min=0.5, max=2) = 0; 8 end testInit ;8 end testInit2; 9 9 }}} 10 10 … … 16 16 In addition to that, there are also missing assertions for dependent parameters. The following example will not show any assert. 17 17 {{{#!mo 18 model testInit 18 model testInit3 19 19 parameter Real p(min=0.5, max=2, fixed=false); 20 20 initial equation 21 21 p = 0; 22 end testInit ;22 end testInit3; 23 23 }}}