<div dir="ltr"><div>Hi,</div><div>I am trying to compile, run, and understand the following code from [1].</div><div><br></div><div>type Moving v = Time -> v</div><div><br></div><div>class Number a where</div><div>(+), (-), (*) :: a -> a -> a</div><div>sqr, sqrt :: a -> a</div><div>sqr a = a * a</div><div><br></div><div>instance Number v => Number (Moving v) where</div><div> (+) a b = \t -> (a t) + (b t)</div><div> (-) a b = \t -> (a t) - (b t)</div><div> (*) a b = \t -> (a t) * (b t)</div><div> sqrt a = \t -> sqrt (a t)</div><div><br></div><div>I followed the compiler advice to produce the following version which compiles:</div><div><br></div><div>{-# LANGUAGE FlexibleInstances #-}</div><div>{-# LANGUAGE TypeSynonymInstances #-}</div><div>module MovingPoint where</div><div>type Time  = Float -- Type synonym assumed, could it be data type??</div><div>type Moving v  = Time -> v</div><div><br></div><div>class Number a where</div><div> (+), (-), (*) ::  a -> a  -> a</div><div> sqr  ::   a -> a</div><div> sqrt ::  a -> a</div><div><br></div><div>instance (Floating v) => Number (Moving v) where</div><div> (+) a b = \t -> (a t)  Prelude.+ (b t)</div><div> (-) a b = \t -> (a t)  Prelude.- (b t)</div><div> (*) a b = \t -> (a t)  Prelude.* (b t)</div><div> sqr a =  \t -> (a t)  Prelude.* (a t)</div><div> sqrt a =  \t -> Prelude.sqrt (a t)</div><div><br></div><div>I do not know how to invoke any of the operations. In general I do know how to execute lambdas.</div><div>I do not understand the bracketed pairs e.g. (a t).</div><div>Any help on understanding and running the program would be appreciated.</div><div>Thanks,</div><div>Pat</div><div><br></div><div><br></div><div>[1] Ontology for Spatio-temporal Databases</div><div><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.113.9804&rep=rep1&type=pdf">http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.113.9804&rep=rep1&type=pdf</a></div></div>

<br>
<p><span lang="EN-GB"><font size="2">This email originated from DIT. If you received this email in error, please delete it from your system. Please note that if you are not the named addressee, disclosing, copying, distributing or taking any action based on the contents of this email or attachments is prohibited. <a href="http://www.dit.ie/" target="_blank">www.dit.ie</a></font></span></p><p><font size="2">Is ó ITBÁC
a tháinig an ríomhphost seo. Má fuair tú an ríomhphost seo trí earráid, scrios
de do chóras é le do thoil. Tabhair ar aird, mura tú an seolaí ainmnithe, go
bhfuil dianchosc ar aon nochtadh, aon chóipeáil, aon dáileadh nó ar aon ghníomh
a dhéanfar bunaithe ar an ábhar atá sa ríomhphost nó sna hiatáin seo. <a href="http://www.dit.ie/" target="_blank">www.dit.ie</a></font></p><p><a href="http://www.dit.ie/grangegorman" target="_blank"><font size="2">Tá ITBÁC ag aistriú go Gráinseach Ghormáin – DIT is on the move to Grangegorman</font></a></p>