aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Graph/Random.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Test/VeriFuzz/Graph/Random.hs')
-rw-r--r--src/Test/VeriFuzz/Graph/Random.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Test/VeriFuzz/Graph/Random.hs b/src/Test/VeriFuzz/Graph/Random.hs
index e14d73e..9aa849b 100644
--- a/src/Test/VeriFuzz/Graph/Random.hs
+++ b/src/Test/VeriFuzz/Graph/Random.hs
@@ -20,6 +20,6 @@ randomDAG :: (Arbitrary l, Arbitrary e, Graph gr)
randomDAG n = do
list <- generate . infiniteListOf $ arbitrary
l <- generate . infiniteListOf $ arbitraryEdge n
- return . mkGraph (nodes list) $ take (5*n) l
+ return . mkGraph (nodes list) $ take (10*n) l
where
nodes l = zip [0..n] $ take n l