Dummy version of parallel list combinators -- plain sequential evaluation.
authorwenzelm
Thu, 09 Oct 2008 20:53:13 +0200
changeset 28546 d57bfb44c9e5
parent 28545 2fb2d48de366
child 28547 c81f6344bfb7
Dummy version of parallel list combinators -- plain sequential evaluation.
src/Pure/Concurrent/par_list_dummy.ML
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/Pure/Concurrent/par_list_dummy.ML	Thu Oct 09 20:53:13 2008 +0200
@@ -0,0 +1,17 @@
+(*  Title:      Pure/Concurrent/par_list_dummy.ML
+    ID:         $Id$
+    Author:     Makarius
+
+Dummy version of parallel list combinators -- plain sequential evaluation.
+*)
+
+structure ParList: PAR_LIST =
+struct
+
+val map = map;
+val get_some = get_first;
+val fins_some = find_first;
+val exists = exists;
+val forall = forall;
+
+end;