author | Christian Urban <christian.urban@kcl.ac.uk> |
Fri, 29 Nov 2024 18:58:18 +0000 | |
changeset 975 | ae5c03560d4d |
parent 969 | 0dfa2923a7c6 |
permissions | -rw-r--r-- |
630 | 1 |
% !TEX program = xelatex |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
2 |
\documentclass{article} |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
3 |
\usepackage{../style} |
216
f5ec7c597c5b
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
200
diff
changeset
|
4 |
\usepackage{../langs} |
918 | 5 |
\usepackage[normalem]{ulem} |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
6 |
|
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
7 |
\begin{document} |
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
8 |
|
748 | 9 |
\section*{Coursework 2} |
198
f54972b0f641
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
182
diff
changeset
|
10 |
|
835 | 11 |
\noindent This coursework is worth 10\% and is due on \cwTWO{} at |
877 | 12 |
16:00. You are asked to implement the Sulzmann \& Lu lexer for the |
748 | 13 |
WHILE language. You can do the implementation in any programming |
14 |
language you like, but you need to submit the source code with which |
|
15 |
you answered the questions, otherwise a mark of 0\% will be |
|
968 | 16 |
awarded. %You need to submit your written answers as pdf---see attached |
17 |
% questionaire. Code send as code. |
|
18 |
If you use Scala in your code, a |
|
943 | 19 |
good place to start is the file \texttt{lexer.sc} and |
20 |
\texttt{token.sc} uploaded to KEATS. The template file on Github is |
|
968 | 21 |
called \texttt{cw02.sc}. The example files are in the subdirectory |
22 |
\texttt{examples}. The main function that will be tested is |
|
23 |
called \texttt{tokenise}. The marks will be distributed such that |
|
24 |
3 marks are given for the correct \texttt{WHILE\_REGS} regular |
|
25 |
expression; 5 marks for the correct \texttt{inj} and \texttt{mkeps} |
|
26 |
definitions; and two marks when \texttt{tokenise} produces the correct |
|
969 | 27 |
results for the example files. |
968 | 28 |
|
969 | 29 |
\subsection*{Testing\alert} |
30 |
||
31 |
For the marking, the functions that will be tested are |
|
32 |
\texttt{tokenise}, \texttt{inj} and \texttt{mkeps}. |
|
968 | 33 |
|
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
34 |
|
750 | 35 |
\subsection*{Disclaimer\alert} |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
36 |
|
358
b3129cff41e9
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
333
diff
changeset
|
37 |
It should be understood that the work you submit represents |
918 | 38 |
your own effort. You have not copied from anyone else |
39 |
including CoPilot, ChatGPT \& Co. An |
|
363
0d6deecdb2eb
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
358
diff
changeset
|
40 |
exception is the Scala code from KEATS and the code I showed |
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
41 |
during the lectures, which you can both freely use. You can |
918 | 42 |
also use your own code from the CW~1. |
43 |
%But do not |
|
44 |
%be tempted to ask Github Copilot for help or do any other |
|
45 |
%shenanigans like this! |
|
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
46 |
|
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
47 |
\subsection*{Question 1} |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
48 |
|
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
49 |
To implement a lexer for the WHILE language, you first |
358
b3129cff41e9
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
333
diff
changeset
|
50 |
need to design the appropriate regular expressions for the |
748 | 51 |
following eleven syntactic entities: |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
52 |
|
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
53 |
\begin{enumerate} |
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
54 |
\item keywords are |
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
55 |
|
748 | 56 |
\begin{center} |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
57 |
\texttt{while}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
58 |
\texttt{if}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
59 |
\texttt{then}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
60 |
\texttt{else}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
61 |
\texttt{do}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
62 |
\texttt{for}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
63 |
\texttt{to}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
64 |
\texttt{true}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
65 |
\texttt{false}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
66 |
\texttt{read}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
67 |
\texttt{write}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
68 |
\texttt{skip} |
748 | 69 |
\end{center} |
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
70 |
|
748 | 71 |
\item operators are: |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
72 |
\texttt{+}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
73 |
\texttt{-}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
74 |
\texttt{*}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
75 |
\texttt{\%}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
76 |
\texttt{/}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
77 |
\texttt{==}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
78 |
\texttt{!=}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
79 |
\texttt{>}, |
748 | 80 |
\texttt{<}, |
81 |
\texttt{<=}, |
|
82 |
\texttt{>=}, |
|
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
83 |
\texttt{:=}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
84 |
\texttt{\&\&}, |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
85 |
\texttt{||} |
748 | 86 |
|
87 |
\item letters are uppercase and lowercase |
|
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
88 |
|
748 | 89 |
\item symbols are letters plus the characters |
90 |
\texttt{.}, |
|
91 |
\texttt{\_}, |
|
92 |
\texttt{>}, |
|
93 |
\texttt{<}, |
|
94 |
\texttt{=}, |
|
95 |
\texttt{;}, |
|
850 | 96 |
\texttt{,} (comma), |
833 | 97 |
\texttt{$\backslash$} and |
748 | 98 |
\texttt{:} |
99 |
||
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
100 |
\item parentheses are \texttt{(}, \texttt{\{}, \texttt{)} and \texttt{\}} |
934 | 101 |
\item digits are \pcode{0} to \pcode{9} |
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
102 |
\item there are semicolons \texttt{;} |
447
68769db65185
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
428
diff
changeset
|
103 |
\item whitespaces are either \texttt{" "} (one or more) or \texttt{$\backslash$n} or |
845 | 104 |
\texttt{$\backslash$t} or \texttt{$\backslash$r} |
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
105 |
\item identifiers are letters followed by underscores \texttt{\_\!\_}, letters |
934 | 106 |
or digits |
107 |
\item numbers for numbers give |
|
396
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
108 |
a regular expression that can recognise \pcode{0}, but not numbers |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
109 |
with leading zeroes, such as \pcode{001} |
934 | 110 |
\item strings are enclosed by double quotes, like \texttt{"\ldots"}, and consisting of |
111 |
symbols, digits, parentheses, whitespaces and \texttt{$\backslash$n} (note the latter is not the escaped version but \texttt{$\backslash$} followed by \texttt{n}, otherwise we would not be able to indicate in our strings when to write a newline). |
|
946 | 112 |
\item comments start with \texttt{//} and contain symbols, spaces, parentheses and digits until the end-of-the-line markers |
934 | 113 |
\item endo-of-line-markers are \texttt{$\backslash$n} and \texttt{$\backslash$r$\backslash$n} |
180
50e8dcd95ae3
added cw
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
179
diff
changeset
|
114 |
\end{enumerate} |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
115 |
|
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
116 |
\noindent |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
117 |
You can use the basic regular expressions |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
118 |
|
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
119 |
\[ |
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
120 |
\ZERO,\; \ONE,\; c,\; r_1 + r_2,\; r_1 \cdot r_2,\; r^* |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
121 |
\] |
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
122 |
|
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
123 |
\noindent |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
124 |
but also the following extended regular expressions |
182
9ce2414e470e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
181
diff
changeset
|
125 |
|
9ce2414e470e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
181
diff
changeset
|
126 |
\begin{center} |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
127 |
\begin{tabular}{ll} |
494 | 128 |
$[c_1,c_2,\ldots,c_n]$ & a set of characters\\ |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
129 |
$r^+$ & one or more times $r$\\ |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
130 |
$r^?$ & optional $r$\\ |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
131 |
$r^{\{n\}}$ & n-times $r$\\ |
182
9ce2414e470e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
181
diff
changeset
|
132 |
\end{tabular} |
9ce2414e470e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
181
diff
changeset
|
133 |
\end{center} |
9ce2414e470e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
181
diff
changeset
|
134 |
|
458 | 135 |
\noindent |
473 | 136 |
Later on you will also need the record regular expression: |
458 | 137 |
|
138 |
\begin{center} |
|
139 |
\begin{tabular}{ll} |
|
140 |
$REC(x:r)$ & record regular expression\\ |
|
141 |
\end{tabular} |
|
142 |
\end{center} |
|
143 |
||
396
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
144 |
\noindent Try to design your regular expressions to be as |
494 | 145 |
small as possible. For example you should use character sets |
146 |
for identifiers and numbers. Feel free to use the general |
|
147 |
character constructor \textit{CFUN} introduced in CW 1. |
|
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
148 |
|
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
149 |
\subsection*{Question 2} |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
150 |
|
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
151 |
Implement the Sulzmann \& Lu lexer from the lectures. For |
358
b3129cff41e9
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
333
diff
changeset
|
152 |
this you need to implement the functions $nullable$ and $der$ |
369
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
153 |
(you can use your code from CW~1), as well as $mkeps$ and |
358
b3129cff41e9
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
333
diff
changeset
|
154 |
$inj$. These functions need to be appropriately extended for |
968 | 155 |
the extended regular expressions from Q1. The definitions |
156 |
you need to create are: |
|
157 |
||
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
158 |
|
369
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
159 |
\begin{center} |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
160 |
\begin{tabular}{@ {}l@ {\hspace{2mm}}c@ {\hspace{2mm}}l@ {}} |
494 | 161 |
$mkeps([c_1,c_2,\ldots,c_n])$ & $\dn$ & $?$\\ |
369
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
162 |
$mkeps(r^+)$ & $\dn$ & $?$\\ |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
163 |
$mkeps(r^?)$ & $\dn$ & $?$\\ |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
164 |
$mkeps(r^{\{n\}})$ & $\dn$ & $?$\medskip\\ |
494 | 165 |
$inj\, ([c_1,c_2,\ldots,c_n])\,c\,\ldots$ & $\dn$ & $?$\\ |
369
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
166 |
$inj\, (r^+)\,c\,\ldots$ & $\dn$ & $?$\\ |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
167 |
$inj\, (r^?)\,c\,\ldots$ & $\dn$ & $?$\\ |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
168 |
$inj\, (r^{\{n\}})\,c\,\ldots$ & $\dn$ & $?$\\ |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
169 |
\end{tabular} |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
170 |
\end{center} |
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
171 |
|
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
172 |
\noindent where $inj$ takes three arguments: a regular |
396
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
173 |
expression, a character and a value. Test your lexer code |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
174 |
with at least the two small examples below: |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
175 |
|
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
176 |
\begin{center} |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
177 |
\begin{tabular}{ll} |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
178 |
regex: & string:\smallskip\\ |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
179 |
$a^{\{3\}}$ & $aaa$\\ |
458 | 180 |
$(a + \ONE)^{\{3\}}$ & $aa$ |
396
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
181 |
\end{tabular} |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
182 |
\end{center} |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
183 |
|
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
184 |
|
598 | 185 |
\noindent Both strings should be successfully lexed by the |
396
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
186 |
respective regular expression, that means the lexer returns |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
187 |
in both examples a value. |
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
188 |
|
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
189 |
|
4cd75c619e06
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
395
diff
changeset
|
190 |
Also add the record regular expression from the |
968 | 191 |
lectures to your lexer and complete the function |
192 |
\pcode{env} so that it returns all assignments from a value (this then |
|
193 |
allows you to extract easily the tokens from a value in the next |
|
194 |
question).\medskip |
|
369
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
195 |
|
43c0ed473720
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
364
diff
changeset
|
196 |
\noindent |
968 | 197 |
Finally make that the function \texttt{lexing\_simp} generates |
198 |
with the regular expression from Q1 for the string |
|
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
199 |
|
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
200 |
\begin{center} |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
201 |
\code{"read n;"} |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
202 |
\end{center} |
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
203 |
|
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
204 |
\noindent |
968 | 205 |
the following pairs: |
206 |
||
207 |
\begin{center} |
|
208 |
\texttt{List((k,read), (w, ), (i,n), (s,;))} |
|
209 |
\end{center} |
|
210 |
||
211 |
||
212 |
||
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
213 |
|
333
8890852e18b7
updated coursework
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
328
diff
changeset
|
214 |
|
419
4110ab35e5d8
updated courseworks
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
396
diff
changeset
|
215 |
\subsection*{Question 3} |
275
618c7640cf66
updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
216
diff
changeset
|
216 |
|
968 | 217 |
Make sure your lexer from Q2 also simplifies regular expressions after |
218 |
each derivation step and rectifies the computed values after each |
|
219 |
injection. Use this lexer to tokenise the six WHILE programs |
|
220 |
in the \texttt{examples} directory. Make sure that the \texttt{tokenise} |
|
221 |
function filters out whitespaces and comments.\bigskip |
|
182
9ce2414e470e
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
181
diff
changeset
|
222 |
|
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
223 |
|
968 | 224 |
% \begin{figure}[h] |
225 |
% \mbox{\lstinputlisting[language=While,xleftmargin=10mm]{../cwtests/cw02/fib.while}} |
|
226 |
% \caption{Fibonacci program in the WHILE language.\label{fib}} |
|
227 |
% \end{figure} |
|
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
228 |
|
968 | 229 |
% \begin{figure}[h] |
230 |
% \mbox{\lstinputlisting[language=While,xleftmargin=10mm]{../cwtests/cw02/loops.while}} |
|
231 |
% \caption{The three-nested-loops program in the WHILE language. |
|
232 |
% (Usually used for timing measurements.)\label{loop}} |
|
233 |
% \end{figure} |
|
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
234 |
|
968 | 235 |
% \begin{figure}[h] |
236 |
% \mbox{\lstinputlisting[language=While,xleftmargin=10mm]{../cwtests/cw02/factors.while}} |
|
237 |
% \caption{A program that calculates factors for numbers in the WHILE |
|
238 |
% language.\label{factors}} |
|
239 |
% \end{figure} |
|
659 | 240 |
|
968 | 241 |
% \begin{figure}[h] |
242 |
% \mbox{\lstinputlisting[language=While,xleftmargin=10mm]{../cwtests/cw02/collatz2.while}} |
|
243 |
% \caption{A program that calculates the Collatz series for numbers |
|
244 |
% between 1 and 100.\label{collatz}} |
|
245 |
% \end{figure} |
|
748 | 246 |
|
968 | 247 |
% \clearpage |
248 |
% \newpage |
|
249 |
% \section*{Answers} |
|
918 | 250 |
|
968 | 251 |
% \mbox{} |
918 | 252 |
|
968 | 253 |
% \noindent |
254 |
% \textbf{Question 2:}\\ (Use mathematical notation, such as $r^+$, rather than code, such as \code{PLUS(r)}) |
|
918 | 255 |
|
968 | 256 |
% \begin{center} |
257 |
% \def\arraystretch{1.6} |
|
258 |
% \begin{tabular}{@ {}l@ {\hspace{2mm}}c@ {\hspace{2mm}}l@ {}} |
|
259 |
% $mkeps([c_1,c_2,\ldots,c_n])$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
260 |
% $mkeps(r^+)$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
261 |
% $mkeps(r^?)$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
262 |
% $mkeps(r^{\{n\}})$ & $\dn$ & \uline{\hspace{8cm}}\bigskip\\ |
|
263 |
% $inj\, ([c_1,c_2,\ldots,c_n])\,c\,\ldots$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
264 |
% $inj\, (r^+)\,c\,\ldots$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
265 |
% $inj\, (r^?)\,c\,\ldots$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
266 |
% $inj\, (r^{\{n\}})\,c\,\ldots$ & $\dn$ & \uline{\hspace{8cm}}\\ |
|
267 |
% \end{tabular} |
|
268 |
% \end{center}\bigskip |
|
918 | 269 |
|
968 | 270 |
% \noindent |
271 |
% Tokens for \code{"read n;"}\\ |
|
918 | 272 |
|
968 | 273 |
% \noindent |
274 |
% \uline{\hfill}\medskip |
|
918 | 275 |
|
968 | 276 |
% \noindent |
277 |
% \uline{\hfill}\medskip |
|
918 | 278 |
|
968 | 279 |
% \noindent |
280 |
% \uline{\hfill}\medskip |
|
918 | 281 |
|
968 | 282 |
% \noindent |
283 |
% \uline{\hfill}\medskip |
|
918 | 284 |
|
285 |
||
178
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
286 |
\end{document} |
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
287 |
|
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
288 |
%%% Local Variables: |
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
289 |
%%% mode: latex |
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
290 |
%%% TeX-master: t |
d36363d648e3
added
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff
changeset
|
291 |
%%% End: |