X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fmaster-project%2Freport.git;a=blobdiff_plain;f=Chapters%2FPrototype.tex;h=48c69b9d0f50bdfb1dd71c95994f13ff504e9457;hp=820327ce36008203deda81b3805af757464868f8;hb=19c17205efa182b80916caa31afeadad9d2dd5b5;hpb=5a403dc7395ffaa580c6d673ebd2debb638643b8 diff --git a/Chapters/Prototype.tex b/Chapters/Prototype.tex index 820327c..48c69b9 100644 --- a/Chapters/Prototype.tex +++ b/Chapters/Prototype.tex @@ -80,8 +80,7 @@ However, \small{EDIF} is not completely tool-independent. It specifies a meta-format, but the hardware components that can be used vary between various tool and hardware vendors, as well as the interpretation of the - \small{EDIF} standard. \todo{Is this still true? Reference: - http://delivery.acm.org/10.1145/80000/74534/p803-li.pdf?key1=74534\&key2=8370537521\&coll=GUIDE\&dl=GUIDE\&CFID=61207158\&CFTOKEN=61908473} + \small{EDIF} standard. \cite[li89] This means that when working with \small{EDIF}, our prototype would become technology dependent (\eg only work with \small{FPGA}s of a specific @@ -332,7 +331,7 @@ \startlambda λbndr.body \stoplambda - This is the basic lambda abstraction, as it occurs in labmda calculus. + This is the basic lambda abstraction, as it occurs in lambda calculus. It consists of a binder part and a body part. A lambda abstraction creates a function, that can be applied to an argument. The binder is usually a value binder, but it can also be a \emph{type binder} (or @@ -452,12 +451,12 @@ binder, even when strictness was involved. Nonetheless, the prototype handles this binder as expected. - Note that these case statements are less powerful than the full Haskell - case statements. In particular, they do not support complex patterns like + Note that these case expressions are less powerful than the full Haskell + case expressions. In particular, they do not support complex patterns like in Haskell. Only the constructor of an expression can be matched, complex patterns are implemented using multiple nested case expressions. - Case statements are also used for unpacking of algebraic datatypes, even + Case expressions are also used for unpacking of algebraic datatypes, even when there is only a single constructor. For examples, to add the elements of a tuple, the following Core is generated: @@ -996,7 +995,7 @@ \emph{one} application, no more and no less. The function result should contain exactly one state variable, which - can be extracted using (multiple) case statements. The extracted + can be extracted using (multiple) case expressions. The extracted state variable is referred to the \emph{output substate} The type of this output substate must be identical to the type of