src/Pure/Concurrent/par_list_dummy.ML
author huffman
Tue, 24 Feb 2009 11:10:05 -0800
changeset 30081 46b9c8ae3897
parent 29368 503ce3f8f092
permissions -rw-r--r--
add simp rules for numerals with 1::nat

(*  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;