updated generated file
authorhaftmann
Wed, 06 May 2009 16:01:05 +0200
changeset 31045 f0c7607bb295
parent 31039 fbb00c98f9ed
child 31046 c1969f609bf7
updated generated file
doc-src/Codegen/Thy/document/Program.tex
doc-src/Codegen/Thy/examples/Example.hs
--- a/doc-src/Codegen/Thy/document/Program.tex	Mon May 04 23:45:58 2009 +0200
+++ b/doc-src/Codegen/Thy/document/Program.tex	Wed May 06 16:01:05 2009 +0200
@@ -766,10 +766,10 @@
 \hspace*{0pt}type 'a eq = {\char123}eq :~'a -> 'a -> bool{\char125};\\
 \hspace*{0pt}fun eq (A{\char95}:'a eq) = {\char35}eq A{\char95};\\
 \hspace*{0pt}\\
-\hspace*{0pt}fun eqop A{\char95}~a b = eq A{\char95}~a b;\\
+\hspace*{0pt}fun eqa A{\char95}~a b = eq A{\char95}~a b;\\
 \hspace*{0pt}\\
 \hspace*{0pt}fun member A{\char95}~x [] = false\\
-\hspace*{0pt} ~| member A{\char95}~x (y ::~ys) = eqop A{\char95}~x y orelse member A{\char95}~x ys;\\
+\hspace*{0pt} ~| member A{\char95}~x (y ::~ys) = eqa A{\char95}~x y orelse member A{\char95}~x ys;\\
 \hspace*{0pt}\\
 \hspace*{0pt}fun collect{\char95}duplicates A{\char95}~xs ys [] = xs\\
 \hspace*{0pt} ~| collect{\char95}duplicates A{\char95}~xs ys (z ::~zs) =\\
--- a/doc-src/Codegen/Thy/examples/Example.hs	Mon May 04 23:45:58 2009 +0200
+++ b/doc-src/Codegen/Thy/examples/Example.hs	Wed May 06 16:01:05 2009 +0200
@@ -3,7 +3,7 @@
 module Example where {
 
 
-foldla :: forall a b. (a -> b -> a) -> a -> [b] -> a;
+foldla :: forall a_1 b_1. (a_1 -> b_1 -> a_1) -> a_1 -> [b_1] -> a_1;
 foldla f a [] = a;
 foldla f a (x : xs) = foldla f (f a x) xs;