-- |
-- Module     : Simulation.Aivika.Trans.GPSS.Block.Gather
-- Copyright  : Copyright (c) 2017, David Sorokin <david.sorokin@gmail.com>
-- License    : BSD3
-- Maintainer : David Sorokin <david.sorokin@gmail.com>
-- Stability  : experimental
-- Tested with: GHC 8.0.2
--
-- This module defines the GPSS block GATHER.
--
module Simulation.Aivika.Trans.GPSS.Block.Gather
       (gatherBlock) where

import Simulation.Aivika.Trans
import Simulation.Aivika.Trans.GPSS.Block
import Simulation.Aivika.Trans.GPSS.AssemblySet
import Simulation.Aivika.Trans.GPSS.Transact

-- | This is the GPSS construct
--
-- @GATHER A@
gatherBlock :: MonadDES m
               => Int
               -- ^ the number of transacts to gather
               -> Block m (Transact m a) (Transact m a)
{-# INLINABLE gatherBlock #-}
gatherBlock :: Int -> Block m (Transact m a) (Transact m a)
gatherBlock Int
n =
  Block :: forall (m :: * -> *) a b. (a -> Process m b) -> Block m a b
Block { blockProcess :: Transact m a -> Process m (Transact m a)
blockProcess = \Transact m a
a -> Transact m a -> Int -> Process m ()
forall (m :: * -> *) a.
MonadDES m =>
Transact m a -> Int -> Process m ()
gatherTransacts Transact m a
a Int
n Process m ()
-> Process m (Transact m a) -> Process m (Transact m a)
forall (m :: * -> *) a b. Monad m => m a -> m b -> m b
>> Transact m a -> Process m (Transact m a)
forall (m :: * -> *) a. Monad m => a -> m a
return Transact m a
a }