Balazs Komuves 39e4c924bd
cabalize
2023-11-16 11:50:42 +01:00

19 lines
346 B
Haskell

module Main where
import Slot
import Sampling
mySlotCfg :: SlotConfig
mySlotCfg = MkSlotCfg
{ _cellSize = 128
, _nCells = 1024
, _nSamples = 10
, _dataSrc = FakeData 12345
}
main :: IO ()
main = do
let slotCfg = mySlotCfg
circomMainComponentV1 slotCfg "slot_main.circom"
samplingTest slotCfg "input_example.json"