kdrag.notation.cond
- kdrag.notation.cond(*cases, default=None) ExprRef
Helper for chained ifs defined by cases. Each case is a tuple of a bool condition and a term. If default is not given, a check is performed for totality.
>>> x = smt.Int("x") >>> kd.cond((x < 0, 2 * x), (x == 0, 3 * x), (x > 0, 5 * x)) If(x < 0, 2*x, If(x == 0, 3*x, If(x > 0, 5*x, unreachable...))) >>> kd.cond((x < 0, 2 * x), (x == 0, 3 * x), default = 5 * x) If(x < 0, 2*x, If(x == 0, 3*x, 5*x))
- Return type:
ExprRef