Skip to content
Snippets Groups Projects
Commit b965cebb authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[wp] only search closed terms for tactics

parent 2d9eb07a
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,8 @@ let iter f e =
Queue.add e q ;
while not (Queue.is_empty q) do
let e = Queue.pop q in
f e ; F.lc_iter (fun e -> Queue.push e q) e
if F.lc_closed e then f e ;
F.lc_iter (fun e -> Queue.push e q) e
done
let once f e =
......@@ -42,7 +43,8 @@ let once f e =
Queue.add e q ;
while not (Queue.is_empty q) do
let e = Queue.pop q in
f e ; F.lc_iter (fun e -> if once m e then Queue.push e q) e
if F.lc_closed e then f e ;
F.lc_iter (fun e -> if once m e then Queue.push e q) e
done
(* -------------------------------------------------------------------------- *)
......@@ -151,3 +153,5 @@ let lookup ~occur ~inside =
) inside ;
raise Not_found
with Found e -> e
(* -------------------------------------------------------------------------- *)
......@@ -49,3 +49,5 @@ val locate : select:term -> inside:term -> occurrence
(** Retrieve back the [k]-th occurrence of a footprint inside a term. *)
val lookup : occur:occurrence -> inside:term -> term
(* -------------------------------------------------------------------------- *)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment