
17 Mar
2008
17 Mar
'08
1:54 p.m.
On 17 mar 2008, at 14.37, rodrigo.bonifacio wrote:
Hi all,
Is it possible to define a limit for the size of children list bellow?
I've tried:
children <- resize (10 (listGen featureGenNormal))
You are calling a number as a function. Also, listGen has to use the size argument. Try something like (not tested): listGen = sized (\maxSize -> do n <- arbitrary x <- g xs <- frequency [ (1, return []), (n, listGen g) ] return (x:xs)