Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
proofutils.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
(******************************************************************************) (* This file is part of Waterproof-lib. *) (* *) (* Waterproof-lib is free software: you can redistribute it and/or modify *) (* it under the terms of the GNU General Public License as published by *) (* the Free Software Foundation, either version 3 of the License, or *) (* (at your option) any later version. *) (* *) (* Waterproof-lib is distributed in the hope that it will be useful, *) (* but WITHOUT ANY WARRANTY; without even the implied warranty of *) (* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *) (* GNU General Public License for more details. *) (* *) (* You should have received a copy of the GNU General Public License *) (* along with Waterproof-lib. If not, see <https://www.gnu.org/licenses/>. *) (* *) (******************************************************************************) open Hints open Pp open Proofview open Proofview.Notations open Backtracking (** Returns the index of the first element [x] of [l] such that `f x` is [true] *) let find_first (f: 'a -> bool) (l: 'a list): int option = let rec aux (index: int) (p: 'a list): int option = match p with | [] -> None | x::q when f x -> Some index | _::q -> aux (index + 1) q in aux 0 l (** Returns the index of the last element [x] of [l] such that `f x` is [true] *) let find_last (f: 'a -> bool) (l: 'a list): int option = let rec aux (current_index: int) (last_index: int option) (p: 'a list): int option = match p with | [] -> last_index | x::q -> aux (current_index + 1) (if f x then Some current_index else last_index) q in aux 0 None l (** Returns the queue of the given list after the [n]th element included *) let rec tail_end (l: 'a list) (n: int): 'a list = match (l, n) with | (_, 0) -> l | ([], _) -> [] | (_::p, _) -> tail_end p (n - 1) (** Generic dictionnary taking strings as keys *) module StringMap = Map.Make(String) (** Maps the given function to the list then applies every returned tactic *) let tclMAP_rev (f: 'a -> unit tactic) (args: 'a list): unit tactic = List.fold_left (fun accu arg -> Tacticals.tclTHEN accu (f arg)) (Proofview.tclUNIT ()) args (** Generic mergeable type *) module type Mergeable = sig (** Type of the elements *) type elt (** Empty value *) val empty: elt (** How to merge two elements *) val merge: elt -> elt -> elt end (** Generalization of tactics defined in coq-core for {! Mergeable}-typed tactics *) module TypedTactics(M: Mergeable) = struct (** Merge of tactics' returned elements *) let typedThen (tactic1: M.elt tactic) (tactic2: M.elt tactic): M.elt tactic = tactic1 >>= fun elt1 -> tactic2 >>= fun elt2 -> tclUNIT @@ M.merge elt1 elt2 (** Same as {! typedThen} with a list of tactics *) let typedLongThen (tactics: M.elt tactic list): M.elt tactic = List.fold_left typedThen (tclUNIT M.empty) tactics (** Generalization of {! Proofview.Goal.enter} *) let typedGoalEnter (f: Goal.t -> M.elt tactic): M.elt tactic = Goal.goals >>= fun goals -> let tactics = List.map (fun goal_tactic -> goal_tactic >>= f) goals in List.fold_left (fun acc tac -> typedThen acc tac) (tclUNIT M.empty) tactics (** Generalisation of {! Proofview.tclINDEPENDENT} *) let typedIndependant (tactic: M.elt tactic): M.elt tactic = tclINDEPENDENTL tactic >>= fun elts -> tclUNIT @@ List.fold_left M.merge M.empty elts end module TraceTactics = TypedTactics( struct type elt = trace let empty: elt = no_trace let merge: elt -> elt -> elt = merge_traces end ) (** Rewrite of [Auto.tclLOG] Updates the trace contained in the given tactic. Fails if the hint's name is forbidden, or if the proof will be complete without using all must-use lemmas. Arguments: - [pp: Environ.env -> Evd.evar_map -> Pp.t * Pp.t]: function to obtain the printable version of [(hint_name, source_hint_database)] - [tac: trace tactic]: tactic that will be tried - [must_use: : Pp.t list]: list of tactics that must be used during the automation - [forbidden: : Pp.t list]: list of tactics that mustn't be used during the automation *) let tclLOG (pp: Environ.env -> Evd.evar_map -> Pp.t * Pp.t) (tac: trace tactic) (forbidden: Pp.t list): trace tactic = ( tclIFCATCH ( tac >>= fun trace -> tclENV >>= fun env -> tclEVARMAP >>= fun sigma -> let (hint, src) = pp env sigma in if List.mem hint forbidden then tclZERO ~info:(Exninfo.reify ()) (SearchBound trace) else tclUNIT { trace with trace = (true, trace.current_depth, hint, src)::trace.trace } ) tclUNIT (fun (exn, info) -> tclENV >>= fun env -> tclEVARMAP >>= fun sigma -> let (hint, src) = pp env sigma in let trace = begin match exn with | SearchBound trace -> trace | _ -> no_trace end in tclZERO ~info (SearchBound (merge_traces trace @@ singleton_trace false hint src)) ) ) (** Checks if every hint in [must_use] is contained in [tac] and returns an exception if not *) let trace_check_used (must_use: t list) (trace: trace): trace tactic = let used_lemmas = ref StringMap.empty in List.iter (fun name -> used_lemmas := StringMap.add (string_of_ppcmds name) false !used_lemmas) must_use; List.iter (fun (_, _, hint, _) -> used_lemmas := StringMap.update (string_of_ppcmds hint) (fun value -> match value with | None -> None | Some _ -> Some true ) !used_lemmas) trace.trace; let unused_lemmas = ref [] in if StringMap.exists (fun name is_used -> if (not is_used) then unused_lemmas := name::!unused_lemmas; not is_used) !used_lemmas then tclZERO ~info:(Exninfo.reify ()) (SearchBound (failed trace)) else tclUNIT trace (** Rewrite of {! Tacticals.tclORELSE0} to give the trace of the failed tactic instead of the exception *) let tclOrElse0 (tac: trace tactic) (f: trace -> trace tactic): trace tactic = TraceTactics.typedIndependant @@ tclORELSE tac begin fun (e, info) -> match e with | SearchBound trace -> f trace | _ -> f no_trace end (** Wrapper around {! tclOrElse0} with merge of trace contained in the failed [trace tactic] into the second one *) let tclTraceOrElse (tac1: trace tactic) (tac2: trace tactic): trace tactic = tclOrElse0 tac1 @@ fun trace1 -> tac2 >>= fun trace2 -> tclUNIT @@ merge_traces (failed trace1) trace2 (** Rewrite of {! Tacticals.tclTraceFirst} with [trace tactic] with a merge of traces of failed tactics *) let tclTraceFirst (tacs: trace tactic list): trace tactic = let rec aux (tacs: trace tactic list) (failed_trace: trace): trace tactic = match tacs with | [] -> let info = Exninfo.reify () in tclZERO ~info (SearchBound failed_trace) | tac::rest -> tclOrElse0 tac @@ fun trace1 -> aux rest { failed_trace with trace = List.append (failed trace1).trace failed_trace.trace } in aux tacs no_trace (** Rewrite of Coq's hint printer to keep only the necessary parts *) let pr_hint (env: Environ.env) (sigma: Evd.evar_map) (h: FullHint.t) = let pr_hint_elt env sigma h = Printer.pr_econstr_env env sigma (snd @@ hint_as_term h) in match FullHint.repr h with | Res_pf c -> pr_hint_elt env sigma c | ERes_pf c -> pr_hint_elt env sigma c | Give_exact c -> pr_hint_elt env sigma c | Res_pf_THEN_trivial_fail c -> pr_hint_elt env sigma c | Unfold_nth c -> Printer.pr_evaluable_reference c | Extern (_, tac) -> Pputils.pr_glb_generic env sigma tac