aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-03-11 10:00:26 +0100
committerPierre-Marie Pédrot2020-03-11 10:00:26 +0100
commitc64623b766854b4a5adc674e3966a359da2d0ef8 (patch)
tree6014a26d300ee78505e0fcdc29eb59f86e2a81c9 /lib
parent98b25745ab50df8f5f263cd32dbe8525aa525ea8 (diff)
parent05d5d1b0aa6a72097f25ecf99d29f582d32c0d96 (diff)
Merge PR #11790: [lib] [ccalgo] Remove unused code / cleanup
Reviewed-by: ppedrot
Diffstat (limited to 'lib')
-rw-r--r--lib/util.ml4
-rw-r--r--lib/util.mli4
2 files changed, 0 insertions, 8 deletions
diff --git a/lib/util.ml b/lib/util.ml
index e2447b005e..ae8119ced0 100644
--- a/lib/util.ml
+++ b/lib/util.ml
@@ -82,10 +82,6 @@ module Set = CSet
module Map = CMap
-(* Stacks *)
-
-module Stack = CStack
-
(* Matrices *)
let matrix_transpose mat =
diff --git a/lib/util.mli b/lib/util.mli
index 1417d6dfcb..be0cc11763 100644
--- a/lib/util.mli
+++ b/lib/util.mli
@@ -76,10 +76,6 @@ module Set : module type of CSet
module Map : module type of CMap
-(** {6 Stacks.} *)
-
-module Stack : module type of CStack
-
(** {6 Streams. } *)
val stream_nth : int -> 'a Stream.t -> 'a