diff options
| author | Maxime Dénès | 2018-03-05 13:15:15 +0100 |
|---|---|---|
| committer | Maxime Dénès | 2018-03-05 13:15:15 +0100 |
| commit | 736e86e06b5831a0dd4b6a655708b4ffd2b4ee64 (patch) | |
| tree | f1f572e011f0e5e476256d58517258774bdf149e /engine/proofview.mli | |
| parent | a46a04577e34c69b42c2728ec1e0babb5be23e31 (diff) | |
| parent | 7267e31fa4456aee62a1e39dfdb7e38a8832f93f (diff) | |
Merge PR #6700: [ssr] rewrite Ssripats and Ssrview in the tactic monad
Diffstat (limited to 'engine/proofview.mli')
| -rw-r--r-- | engine/proofview.mli | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engine/proofview.mli b/engine/proofview.mli index 77f30746d8..d2a54e238c 100644 --- a/engine/proofview.mli +++ b/engine/proofview.mli @@ -513,6 +513,7 @@ module Goal : sig (** Compatibility: avoid if possible *) val goal : t -> Evar.t + val print : t -> Goal.goal Evd.sigma end @@ -549,7 +550,10 @@ val tclLIFT : 'a NonLogical.t -> 'a tactic (*** Compatibility layer with <= 8.2 tactics ***) module V82 : sig type tac = Evar.t Evd.sigma -> Evar.t list Evd.sigma - val tactic : tac -> unit tactic + + (* [nf_evars=true] applies the evar (assignment) map to the goals + * (conclusion and context) before calling the tactic *) + val tactic : ?nf_evars:bool -> tac -> unit tactic (* normalises the evars in the goals, and stores the result in solution. *) |
