src/HOL/Tools/meson.ML
changeset 30190 479806475f3c
parent 29684 40bf9f4e7a4e
child 30607 c3d1590debd8
--- a/src/HOL/Tools/meson.ML	Sun Mar 01 16:48:06 2009 +0100
+++ b/src/HOL/Tools/meson.ML	Sun Mar 01 23:36:12 2009 +0100
@@ -92,7 +92,7 @@
     | pairs =>
         let val thy = theory_of_thm th
             val (tyenv,tenv) =
-                  foldl (uncurry (Pattern.first_order_match thy)) (tyenv0,tenv0) pairs
+                  List.foldl (uncurry (Pattern.first_order_match thy)) (tyenv0,tenv0) pairs
             val t_pairs = map term_pair_of (Vartab.dest tenv)
             val th' = Thm.instantiate ([], map (pairself (cterm_of thy)) t_pairs) th
         in  th'  end
@@ -428,7 +428,7 @@
 fun name_thms label =
     let fun name1 (th, (k,ths)) =
           (k-1, Thm.put_name_hint (label ^ string_of_int k) th :: ths)
-    in  fn ths => #2 (foldr name1 (length ths, []) ths)  end;
+    in  fn ths => #2 (List.foldr name1 (length ths, []) ths)  end;
 
 (*Is the given disjunction an all-negative support clause?*)
 fun is_negative th = forall (not o #1) (literals (prop_of th));
@@ -477,7 +477,7 @@
 (*Sums the sizes of the subgoals, ignoring hypotheses (ancestors)*)
 fun addconcl(prem,sz) = size_of_term(Logic.strip_assums_concl prem) + sz
 
-fun size_of_subgoals st = foldr addconcl 0 (prems_of st);
+fun size_of_subgoals st = List.foldr addconcl 0 (prems_of st);
 
 
 (*Negation Normal Form*)
@@ -544,12 +544,12 @@
 
 (*Make clauses from a list of theorems, previously Skolemized and put into nnf.
   The resulting clauses are HOL disjunctions.*)
-fun make_clauses ths = sort_clauses (foldr add_clauses [] ths);
+fun make_clauses ths = sort_clauses (List.foldr add_clauses [] ths);
 
 (*Convert a list of clauses (disjunctions) to Horn clauses (contrapositives)*)
 fun make_horns ths =
     name_thms "Horn#"
-      (distinct Thm.eq_thm_prop (foldr (add_contras clause_rules) [] ths));
+      (distinct Thm.eq_thm_prop (List.foldr (add_contras clause_rules) [] ths));
 
 (*Could simply use nprems_of, which would count remaining subgoals -- no
   discrimination as to their size!  With BEST_FIRST, fails for problem 41.*)