Z3_simplify

Function Z3_simplify 

Source
pub unsafe extern "C" fn Z3_simplify(
    c: Z3_context,
    a: Z3_ast,
) -> Option<Z3_ast>
Expand description

Interface to simplifier.

Provides an interface to the AST simplifier used by Z3. It returns an AST object which is equal to the argument. The returned AST is simplified using algebraic simplification rules, such as constant propagation (propagating true/false over logical connectives).

ยงSee also: