goal_translate method
\brief Copy a goal \c g from the context \c source to the context \c target.
def_API('Z3_goal_translate', GOAL, (_in(CONTEXT), _in(GOAL), _in(CONTEXT)))
Implementation
Z3_goal goal_translate(
Z3_context source,
Z3_goal g,
Z3_context target,
) {
return _goal_translate(
source,
g,
target,
);
}