goal_reset method
\brief Erase all formulas from the given goal.
def_API('Z3_goal_reset', VOID, (_in(CONTEXT), _in(GOAL)))
Implementation
void goal_reset(
Z3_context c,
Z3_goal g,
) {
return _goal_reset(
c,
g,
);
}
\brief Erase all formulas from the given goal.
def_API('Z3_goal_reset', VOID, (_in(CONTEXT), _in(GOAL)))
void goal_reset(
Z3_context c,
Z3_goal g,
) {
return _goal_reset(
c,
g,
);
}