src/Pure/Concurrent/par_list_dummy.ML
changeset 32827 2729c8033326
parent 32826 f7f94bb9ac94
parent 32817 4ed308181f7f
child 32828 ad76967c703d
child 32833 f3716d1a2e48
--- a/src/Pure/Concurrent/par_list_dummy.ML	Thu Oct 01 18:58:47 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-(*  Title:      Pure/Concurrent/par_list_dummy.ML
-    Author:     Makarius
-
-Dummy version of parallel list combinators -- plain sequential evaluation.
-*)
-
-structure Par_List: PAR_LIST =
-struct
-
-val map = map;
-val get_some = get_first;
-val find_some = find_first;
-val exists = exists;
-val forall = forall;
-
-end;