X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=methods.top.tex;h=cb951a13198e73f989f0aceff7ed189a9e8b391a;hb=4c3c9734d91c19e41eb4424944247adad214d188;hp=6d47dfc9206cc2eb9c45ae14a41f24f00e43a62c;hpb=435b0d98d22a47530f50ff82f2451e70ce2bed96;p=msc-thesis1617.git diff --git a/methods.top.tex b/methods.top.tex index 6d47dfc..cb951a1 100644 --- a/methods.top.tex +++ b/methods.top.tex @@ -27,7 +27,7 @@ image all fields are entered and the \CI{TaskValue} transitions to the \caption{The states of a \CI{TaskValue}}\label{fig:taskvalue} \end{figure} -\begin{lstlisting}[language=Clean,label={lst:taskex},% +\begin{lstlisting}[label={lst:taskex},% caption={An example \gls{Task} for entering a name}] :: Name = { firstname :: String , lastname :: String @@ -67,6 +67,7 @@ specialization instances for these functions and show an according interface. Generated interfaces can be modified with decoration operators. \section{Combinators} +\todo{check and refine} \Glspl{Task} can be combined using so called \gls{Task}-combinators. Combinators describe relations between \glspl{Task}. \Glspl{Task} can be combined in parallel, sequenced and their result values can be converted to @@ -99,7 +100,7 @@ Listing~\ref{lst:combinators}. dictates. \end{itemize} -\begin{lstlisting}[language=Clean,% +\begin{lstlisting}[% caption={\Gls{Task}-combinators},label={lst:combinators}] //Step combinator (>>*) infixl 1 :: (Task a) [TaskCont a (Task b)] -> Task b | iTask a & iTask b @@ -118,7 +119,7 @@ Listing~\ref{lst:combinators}. (-&&-) infixr 4 :: (Task a) (Task b) -> Task (a,b) | iTask a & iTask b \end{lstlisting} -\section{\acrlongpl{SDS}} +\section{Shared Data Sources} \Glspl{SDS} are an abstraction over resources that are available in the world or in the \gls{iTasks} system. The shared data can be a file on disk, it can be the time, a random integer or just some data stored in memory. The actual @@ -133,7 +134,7 @@ operations are atomic in the sense that during reading no other tasks are executed. \begin{lstlisting}[% - language=Clean,label={lst:shares},caption={\Gls{SDS} functions}] + label={lst:shares},caption={\Gls{SDS} functions}] get :: (ReadWriteShared r w) -> Task r | iTask r set :: w (ReadWriteShared r w) -> Task w | iTask w upd :: (r -> w) (ReadWriteShared r w) -> Task w | iTask r & iTask w