-- | -- Module : Simulation.Aivika.GPSS.Block.Gather -- Copyright : Copyright (c) 2017, David Sorokin -- License : BSD3 -- Maintainer : David Sorokin -- Stability : experimental -- Tested with: GHC 8.0.2 -- -- This module defines the GPSS block GATHER. -- module Simulation.Aivika.GPSS.Block.Gather (gatherBlock) where import Simulation.Aivika import Simulation.Aivika.GPSS.Block import Simulation.Aivika.GPSS.AssemblySet import Simulation.Aivika.GPSS.Transact -- | This is the GPSS construct -- -- @GATHER A@ gatherBlock :: Int -- ^ the number of transacts to gather -> Block (Transact a) (Transact a) gatherBlock n = Block { blockProcess = \a -> gatherTransacts a n >> return a }