aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Graph/Random.hs
blob: d2d41a873c5bd891002f948ff771533999023df6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module Test.VeriFuzz.Graph.Random where

import           Data.Graph.Inductive (Graph, LEdge, LNode, mkGraph)
import           Test.QuickCheck      (Arbitrary, Gen, arbitrary, generate,
                                       infiniteListOf, listOf, resize, scale,
                                       suchThat)

import           Test.VeriFuzz.Types

arbitraryEdge :: (Arbitrary e) => Int -> Gen (LEdge e)
arbitraryEdge n = do
  x <- with $ \a -> a < n && a > 0 && a /= n-1
  y <- with $ \a -> x < a && a < n && a > 0
  z <- arbitrary
  return (x, y, z)
    where
      with = suchThat . resize n $ arbitrary

randomDAG :: (Arbitrary l, Arbitrary e, Graph gr)
          => Int         -- ^ The number of nodes
          -> IO (gr l e) -- ^ The generated graph. It uses Arbitrary to
                         -- generate random instances of each node
randomDAG n = do
  list <- generate . infiniteListOf $ arbitrary
  l <- generate . infiniteListOf $ arbitraryEdge n
  return . mkGraph (nodes list) $ take (5*n) l
    where
      nodes l = (zip [0..n] $ take n l)