Function z3_sys::Z3_mk_ite

source ·
pub unsafe extern "C" fn Z3_mk_ite(
    c: Z3_context,
    t1: Z3_ast,
    t2: Z3_ast,
    t3: Z3_ast
) -> Z3_ast
Expand description

Create an AST node representing an if-then-else: ite(t1, t2, t3).

The node t1 must have Boolean sort, t2 and t3 must have the same sort. The sort of the new node is equal to the sort of t2 and t3.