<div dir="ltr"><div>In the case statement for the half function I think  variable m is bound to the value of (snd (half (n - 1)).  With this assumption, I have have written a guarded version called half1. Is it always possible to write case statements as a set of conditional equations? My intuition is that this should be possible and that the guarded version reduces pattern matching?</div><div> </div><div>Thanks,</div><div>Pat</div><div><br></div><div>data EvenOdd = Even | Odd deriving (Show,Eq)<br></div><div>half 0 = (Even,0)</div><div>half n = case half (n-1) of (Even,m) -> (Odd,m)</div><div>                            (Odd,m) -> (Even,m+1) </div><div><br></div><div>half1 0  =  (Even , 0) </div><div>half1 n  |  (fst  (half (n - 1)) == Even)  = (Odd , (snd (half (n - 1))))</div><div>half1 n  |  (fst  (half (n - 1)) == Odd)   = (Even , ((snd (half (n - 1))) + 1))</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>