interrupt method
\brief Interrupt the execution of a Z3 procedure. This procedure can be used to interrupt: solvers, simplifiers and tactics.
def_API('Z3_interrupt', VOID, (_in(CONTEXT),))
Implementation
void interrupt(
Z3_context c,
) {
return _interrupt(
c,
);
}