From 64a0ae3600073f486462b1d056409954634b0084 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 19 Jan 2019 23:12:25 +0000 Subject: Reformat with stylish-haskell --- src/VeriFuzz/Graph/RandomAlt.hs | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'src/VeriFuzz/Graph/RandomAlt.hs') diff --git a/src/VeriFuzz/Graph/RandomAlt.hs b/src/VeriFuzz/Graph/RandomAlt.hs index c5fad9e..e6d16bb 100644 --- a/src/VeriFuzz/Graph/RandomAlt.hs +++ b/src/VeriFuzz/Graph/RandomAlt.hs @@ -12,14 +12,10 @@ Define the random generation for the directed acyclic graph. module VeriFuzz.Graph.RandomAlt where -import qualified Data.Graph.Inductive.Arbitrary - as G -import Data.Graph.Inductive.PatriciaTree - ( Gr ) -import Test.QuickCheck ( Arbitrary - , Gen - ) -import qualified Test.QuickCheck as QC +import qualified Data.Graph.Inductive.Arbitrary as G +import Data.Graph.Inductive.PatriciaTree (Gr) +import Test.QuickCheck (Arbitrary, Gen) +import qualified Test.QuickCheck as QC randomDAG :: (Arbitrary l, Arbitrary e) => Gen (Gr l e) randomDAG = G.looplessGraph <$> QC.arbitrary -- cgit