diff options
| author | Pierre-Marie Pédrot | 2018-04-01 17:20:47 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2018-04-01 17:20:47 +0200 |
| commit | f29f8f80c8ad94576c7a36f3f638866c208338a0 (patch) | |
| tree | c0bbb575d283d5fdd722cc721f5a4e50b11b51fd /engine/proofview.mli | |
| parent | 91e8dfcd7192065f21273d02374dce299241616f (diff) | |
| parent | 3c1c101a8757c438379441a334f31f5fe656ef55 (diff) | |
Merge PR #6844: Adding tclBINDFIRST/tclBINDLAST, generalizing type of tclTHENFIRST/tclTHENLAST, informative version of shelve unifiable
Diffstat (limited to 'engine/proofview.mli')
| -rw-r--r-- | engine/proofview.mli | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/engine/proofview.mli b/engine/proofview.mli index e7be665527..1905686fe7 100644 --- a/engine/proofview.mli +++ b/engine/proofview.mli @@ -326,6 +326,9 @@ val unifiable : Evd.evar_map -> Evar.t -> Evar.t list -> bool considered). *) val shelve_unifiable : unit tactic +(** Idem but also returns the list of shelved variables *) +val shelve_unifiable_informative : Evar.t list tactic + (** [guard_no_unifiable] returns the list of unifiable goals if some goals are unifiable (see {!shelve_unifiable}) in the current focus. *) val guard_no_unifiable : Names.Name.t list option tactic @@ -466,6 +469,12 @@ module Unsafe : sig solved. *) val advance : Evd.evar_map -> Evar.t -> Evar.t option + (** [undefined sigma l] applies [advance] to the goals of [l], then + returns the subset of resulting goals which have not yet been + defined *) + val undefined : Evd.evar_map -> Proofview_monad.goal_with_state list -> + Proofview_monad.goal_with_state list + val typeclass_resolvable : unit Evd.Store.field end |
