src/HOL/Modelcheck/mucke_oracle.ML
changeset 27251 121991a4884d
parent 26939 1035c89b4c02
child 28290 4cc2b6046258
--- a/src/HOL/Modelcheck/mucke_oracle.ML	Wed Jun 18 18:54:57 2008 +0200
+++ b/src/HOL/Modelcheck/mucke_oracle.ML	Wed Jun 18 18:54:59 2008 +0200
@@ -218,7 +218,7 @@
   fun deliver_erg sg tl _ [] = [] |
   deliver_erg sg tl typ ((c,tyl)::r) = let
                         val ft = fun_type_of (rev tyl) typ;
-                        val trm = Sign.simple_read_term sg ft c;
+                        val trm = OldGoals.simple_read_term sg ft c;
                         in
                         (con_term_list_of trm (arglist_of sg tl tyl))
 			@(deliver_erg sg tl typ r)
@@ -658,7 +658,7 @@
  val arglist = arglist_of sg tl (snd c);
  val tty = type_of_term t;
  val con_typ = fun_type_of (rev (snd c)) tty;
- val con = Sign.simple_read_term sg con_typ (fst c);
+ val con = OldGoals.simple_read_term sg con_typ (fst c);
 in
  replace_termlist_with_args sg tl a con arglist t (l1,l2)
 end |
@@ -746,7 +746,7 @@
 let
  val arglist = arglist_of sg tl (snd c);
  val con_typ = fun_type_of (rev (snd c)) ty;
- val con = Sign.simple_read_term sg con_typ (fst c);
+ val con = OldGoals.simple_read_term sg con_typ (fst c);
  fun casc_if2 sg tl x con [] ty trm [] = trm | (* should never occur *)
  casc_if2 sg tl x con [arg] ty trm [] = x_subst sg tl x (con_term_of con arg) trm |
  casc_if2 sg tl x con (a::r) ty trm cl =