module ApplyResult:sig..end
Tactic application results
ApplyResult objects represent the result of an application of a tactic to a goal. It contains the subgoals that were produced.
type apply_result
val get_num_subgoals : apply_result -> intThe number of Subgoals.
val get_subgoals : apply_result -> Goal.goal listRetrieves the subgoals from the apply_result.
val get_subgoal : apply_result -> int -> Goal.goalRetrieves a subgoal from the apply_result.
val to_string : apply_result -> stringA string representation of the ApplyResult.