goal_translate method

Z3_goal goal_translate(
  1. Z3_context source,
  2. Z3_goal g,
  3. Z3_context target
)

\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,
  );
}