<div dir="ltr">David,<div>Thanks for the help.</div><div>Much appreciated,</div><div>Pat</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 11 May 2017 at 21:00, David McBride <span dir="ltr"><<a href="mailto:toad3k@gmail.com" target="_blank">toad3k@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">First you need a way to generate an arbitrary stack.  Here's a simple<br>
method that just gives you a 50% chance at each level of generating an<br>
extra layer.<br>
<br>
instance Arbitrary a => Arbitrary (Stack a) where<br>
  arbitrary = oneof [return Empty, Push <$> arbitrary <*> arbitrary ]<br>
<br>
prop_size_succeeds x s = size (Push x s) > size s<br>
prop_size_fails x s = size s > size Empty<br>
<br>
>quickCheck prop_size_fails<br>
*** Failed! Falsifiable (after 6 tests):<br>
()<br>
Empty<br>
<div><div class="h5"><br>
<br>
On Thu, May 11, 2017 at 3:38 PM, PATRICK BROWNE <<a href="mailto:patrick.browne@dit.ie">patrick.browne@dit.ie</a>> wrote:<br>
> Hi,<br>
> I am trying to use Quickcheck to check that pushing an element increases the<br>
> size of a stack.<br>
> Something like:<br>
> prop_size2 x s = (size (Push x s)) > (size s)<br>
><br>
> Is this possible? Below is my effort using an empty stack.<br>
> Thanks in advance,<br>
> Pat<br>
><br>
><br>
> module Stack (empty, push, pop, top, isEmpty) where<br>
> import Test.QuickCheck<br>
><br>
> data Stack a = Empty | Push a (Stack a) deriving  Show<br>
><br>
> empty :: Stack a<br>
> empty = Empty<br>
><br>
> push :: a -> Stack a -> Stack a<br>
> push x ss = Push x ss<br>
><br>
> pop :: Stack a -> Stack a<br>
> pop Empty = error "pop emptyStack"<br>
> pop (Push x ss) = ss<br>
><br>
> top :: Stack a -> a<br>
> top Empty = error "top emptyStack"<br>
> top (Push x ss) = x<br>
><br>
> isEmpty :: Stack a -> Bool<br>
> isEmpty Empty = True<br>
> isEmpty (Push x ss) = False<br>
><br>
><br>
> size :: (Stack a) -> Int<br>
> size Empty = 0<br>
> size (Push x ss) = succ (size ss)<br>
><br>
><br>
> prop_size x  = (size (Push x Empty)) > (size Empty)<br>
><br>
</div></div>> This email originated from DIT. If you received this email in error, please<br>
> delete it from your system. Please note that if you are not the named<br>
> addressee, disclosing, copying, distributing or taking any action based on<br>
> the contents of this email or attachments is prohibited. <a href="http://www.dit.ie" rel="noreferrer" target="_blank">www.dit.ie</a><br>
><br>
> Is ó ITBÁC a tháinig an ríomhphost seo. Má fuair tú an ríomhphost seo trí<br>
> earráid, scrios de do chóras é le do thoil. Tabhair ar aird, mura tú an<br>
> seolaí ainmnithe, go bhfuil dianchosc ar aon nochtadh, aon chóipeáil, aon<br>
> dáileadh nó ar aon ghníomh a dhéanfar bunaithe ar an ábhar atá sa ríomhphost<br>
> nó sna hiatáin seo. <a href="http://www.dit.ie" rel="noreferrer" target="_blank">www.dit.ie</a><br>
><br>
> Tá ITBÁC ag aistriú go Gráinseach Ghormáin – DIT is on the move to<br>
> Grangegorman<br>
><br>
><br>
> ______________________________<wbr>_________________<br>
> Beginners mailing list<br>
> <a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
> <a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/beginners</a><br>
><br>
</blockquote></div><br></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>