diff options
| author | coqbot-app[bot] | 2021-01-18 08:06:55 +0000 |
|---|---|---|
| committer | GitHub | 2021-01-18 08:06:55 +0000 |
| commit | 3efb7a44dee255cd8f6cbd8c80e3c48c601104ed (patch) | |
| tree | 0360a9e8a64520f15a612c97e9cfc7d929c41213 /stm | |
| parent | 888f03e827a6398936b75ee89f0d0db57e1d86c7 (diff) | |
| parent | 3da2dbe9728ae7f5b1860a8e3a6c458e6d976f84 (diff) | |
Merge PR #13656: Avoid using "subgoals" in the UI, it means the same as "goals"
Reviewed-by: Zimmi48
Diffstat (limited to 'stm')
| -rw-r--r-- | stm/partac.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stm/partac.ml b/stm/partac.ml index 8232b017f9..6143ac450b 100644 --- a/stm/partac.ml +++ b/stm/partac.ml @@ -125,7 +125,7 @@ end = struct (* {{{ *) str" existentials remain unsolved: " ++ prlist (Termops.pr_existential_key sigma) (Evar.Set.elements evars)) ) with e when CErrors.noncritical e -> - RespError (CErrors.print e ++ spc() ++ str "(for subgoal "++int r_goalno ++ str ")") + RespError (CErrors.print e ++ spc() ++ str "(for goal "++int r_goalno ++ str ")") let name_of_task { t_name } = t_name let name_of_request { r_name } = r_name @@ -163,7 +163,7 @@ let enable_par ~nworkers = ComTactic.set_par_implementation let open TacTask in let results = (Proof.data p).Proof.goals |> CList.map_i (fun i g -> let g_solution, t_assign = - Future.create_delegate ~name:(Printf.sprintf "subgoal %d" i) + Future.create_delegate ~name:(Printf.sprintf "goal %d" i) (fun x -> x) in TaskQueue.enqueue_task queue ~cancel_switch:(ref false) |
