goal_to_string method

Z3_string goal_to_string(
  1. Z3_context c,
  2. Z3_goal g
)

\brief Convert a goal into a string.

def_API('Z3_goal_to_string', STRING, (_in(CONTEXT), _in(GOAL)))

Implementation

Z3_string goal_to_string(
  Z3_context c,
  Z3_goal g,
) {
  return _goal_to_string(
    c,
    g,
  );
}