# HG changeset patch # User haftmann # Date 1241618465 -7200 # Node ID f0c7607bb295668e8c6968e845096db6b2253c92 # Parent fbb00c98f9ed1af5ccacac515bde24721b6d1175 updated generated file diff -r fbb00c98f9ed -r f0c7607bb295 doc-src/Codegen/Thy/document/Program.tex --- 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) =\\ diff -r fbb00c98f9ed -r f0c7607bb295 doc-src/Codegen/Thy/examples/Example.hs --- 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;