aboutsummaryrefslogtreecommitdiff
path: root/lib/searchstack.ml
diff options
context:
space:
mode:
authorgareuselesinge2013-08-08 18:50:39 +0000
committergareuselesinge2013-08-08 18:50:39 +0000
commit6bac888419048aa8fe06b49bf94f64893228bb00 (patch)
treee01a628f3419265b786318feada5d98cbaba5ab8 /lib/searchstack.ml
parent0faf3c5a53113ec8f31c1747c9cafe4118831282 (diff)
Searchable stack data structure
It is like Stack but one can search without popping git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16670 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/searchstack.ml')
-rw-r--r--lib/searchstack.ml25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/searchstack.ml b/lib/searchstack.ml
new file mode 100644
index 0000000000..8d160e5723
--- /dev/null
+++ b/lib/searchstack.ml
@@ -0,0 +1,25 @@
+(************************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2010 *)
+(* \VV/ **************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(************************************************************************)
+
+type 'a t = 'a list ref
+type ('a,'b) search = [ `Stop of 'b | `Cont of 'a ]
+
+let create () = ref []
+let push x l = l := x :: !l
+let pop l = match !l with [] -> raise Stack.Empty | x::xs -> l := xs; x
+let top l = match !l with [] -> raise Stack.Empty | x::_ -> x
+let find f i l =
+ let rec aux i = function
+ | [] -> raise Not_found
+ | x::xs -> match f i x with `Stop x -> x | `Cont i -> aux i xs in
+ aux i !l
+let is_empty l = match !l with [] -> true | _ -> false
+let iter f l = List.iter f !l
+let clear l = l := []
+let length l = List.length !l
+let to_list l = !l