package coq-core
Install
Dune Dependency
Authors
Maintainers
Sources
md5=64b49dbc3205477bd7517642c0b9cbb6
sha512=02fb5b4fb575af79e092492cbec6dc0d15a1d74a07f827f657a72d4e6066532630e5a6d15be4acdb73314bd40b9a321f9ea0584e0ccfe51fd3a56353bd30db9b
doc/coq-core.vernac/ComTactic/index.html
Module ComTactic
Source
Tactic interpreters have to register their interpretation function
val register_tactic_interpreter :
string ->
('a -> unit Proofview.tactic) ->
'a tactic_interpreter
'a
should be marshallable if ever used with par:
. Must be called no more than once per process with a particular string: make sure to use partial application.
val solve :
pstate:Declare.Proof.t ->
Goal_select.t ->
info:int option ->
interpretable ->
with_end_tac:bool ->
Declare.Proof.t
Entry point for toplevel tactic expression execution. It calls Proof.solve after having interpreted the tactic, and after the tactic runs it unfocus as much as needed to put a goal under focus.
type parallel_solver =
pstate:Declare.Proof.t ->
info:int option ->
interpretable ->
abstract:bool ->
with_end_tac:bool ->
Declare.Proof.t
par: tac
runs tac on all goals, possibly in parallel using a worker pool. If tac is abstract tac1
, then abstract
is passed explicitly to the solver and tac1
passed to worker since it is up to master to opacify the sub proofs produced by the workers.
Entry point when the goal selector is par:
By default par: is implemented with all: (sequential). The STM and LSP document manager provide "more parallel" implementations