IfThenElseOp#

class ansys.scade.apitools.expr.access.IfThenElseOp(expression: scade.model.suite.ExprCall)#

Bases: CallExpression

Provides a vector from a flow and a size.

The format is if then , ..., else , ..., .

See the if_then_else_op example.

Notes#

The design differs slightly from the meta-model. Because the then/else parts must be groups of flows, the IfThenElseOp class exposes directly the list of then/else flows instead of a flow that is an instance of the ListExpression class.

Parameters#

expression :

Call expression to wrap.

Initialize the instance from the Scade expression.

Overview#

else_

Flows when the condition is false.

if_

Condition of the expression.

then

Flows when the condition is true.

Import detail#

from ansys.scade.apitools.expr.access import IfThenElseOp

Property detail#

property IfThenElseOp.else_: list[Expression]#

Flows when the condition is false.

property IfThenElseOp.if_: Expression#

Condition of the expression.

property IfThenElseOp.then: list[Expression]#

Flows when the condition is true.