<div dir="ltr">Both the versions work for me. The one with two calls to fractal takes ~0.03 seconds, whereas the one with only one call takes ~0.01 seconds.<div>All timings produced using (:set +s) in ghci.</div><div><br></div><div>Also, that totally recursive definition is infinitely recursive.</div><div><br></div><div>If you provide some more context, it will be easier to answer your question. Till now I don't exactly understand what the issue is.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 4 March 2015 at 08:52, '2+ <span dir="ltr"><<a href="mailto:electriclightheads@gmail.com" target="_blank">electriclightheads@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">hi!<br>
since my<br>
<br>
fractal :: [Int] -> [Int]<br>
fractal x = [y - head x + z | y <- x, z <- x]<br>
<br>
seems to be working fine with something like:<br>
<br>
take 300 $ cycle $ fractal $ fractal $ [11..17] ++ [55..77]<br>
<br>
wanted to twist the function to something totally recursive<br>
but:<br>
<br>
fractal x = fractal [y - head x + z | y <- x, z <- x]<br>
<br>
experimented with:<br>
<br>
take 300 $ fractal $ [11..17] ++ [55..77]<br>
<br>
doesnt end its process and eat up the RAM<br>
<br>
any hints to solve this issue?<br>
<br>
thank you<br>
<br>
----- 2g ---<br>
<a href="http://sarigama.namaste.jp" target="_blank">http://sarigama.namaste.jp</a><br>
<br>
<br>
_______________________________________________<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" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div>Regards</div><div dir="ltr"><div><br></div><div>Sumit Sahrawat</div></div></div></div></div></div></div>
</div>