aboutsummaryrefslogtreecommitdiffstats
path: root/src/Verismith/Circuit.hs
blob: cda2f4f175e2c6c20a2cf3b712ab40a236a22bc0 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{-|
Module      : Verismith.Circuit
Description : Definition of the circuit graph.
Copyright   : (c) 2018-2019, Yann Herklotz
License     : GPL-3
Maintainer  : yann [at] yannherklotz [dot] com
Stability   : experimental
Portability : POSIX

Definition of the circuit graph.
-}

module Verismith.Circuit
    ( -- * Circuit
      Gate(..)
    , Circuit(..)
    , CNode(..)
    , CEdge(..)
    , fromGraph
    , generateAST
    , rDups
    , rDupsCirc
    , randomDAG
    , genRandomDAG
    )
where

import           Control.Lens
import           Hedgehog                 (Gen)
import qualified Hedgehog.Gen             as Hog
import           Verismith.Circuit.Base
import           Verismith.Circuit.Gen
import           Verismith.Circuit.Random
import           Verismith.Verilog.AST
import           Verismith.Verilog.Mutate

fromGraph :: Gen (ModDecl ann)
fromGraph = do
    gr <- rDupsCirc <$> Hog.resize 100 randomDAG
    return
        $   initMod
        .   head
        $   nestUpTo 5 (generateAST gr)
        ^.. _Wrapped
        .   traverse