Name | Description |
---|---|
initializeLoopCheck | Return dummy Boolean for the detection of algebraic loops (in order to avoid that the tool can perform symbolic manipulations) |
propagateLoopCheck | Propagate flag to check loop |
Type | Name | Description |
---|---|---|
Boolean | result |
function initializeLoopCheck "Return dummy Boolean for the detection of algebraic loops (in order to avoid that the tool can perform symbolic manipulations)" output Boolean result; protected Integer dummy; algorithm dummy := 0; result :=true; end initializeLoopCheck;
Type | Name | Default | Description |
---|---|---|---|
Boolean | b[:] |
Type | Name | Description |
---|---|---|
Boolean | result |
function propagateLoopCheck "Propagate flag to check loop" extends Modelica.Icons.Function; input Boolean b[:]; output Boolean result; protected Integer dummy; algorithm dummy := 0; result := true; end propagateLoopCheck;