src/HOL/Tools/prop_logic.ML
changeset 41491 a2ad5b824051
parent 41471 54a58904a598
child 45740 132a3e1c0fe5
--- a/src/HOL/Tools/prop_logic.ML	Mon Jan 10 15:30:17 2011 +0100
+++ b/src/HOL/Tools/prop_logic.ML	Mon Jan 10 15:45:46 2011 +0100
@@ -396,7 +396,7 @@
 
 fun term_of_prop_formula True = HOLogic.true_const
   | term_of_prop_formula False = HOLogic.false_const
-  | term_of_prop_formula (BoolVar i) = Free ("v" ^ Int.toString i, HOLogic.boolT)
+  | term_of_prop_formula (BoolVar i) = Free ("v" ^ string_of_int i, HOLogic.boolT)
   | term_of_prop_formula (Not fm) = HOLogic.mk_not (term_of_prop_formula fm)
   | term_of_prop_formula (Or (fm1, fm2)) =
       HOLogic.mk_disj (term_of_prop_formula fm1, term_of_prop_formula fm2)