-- |
-- Module     : Simulation.Aivika.Trans.GPSS.Block.Leave
-- 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 LEAVE.
--
module Simulation.Aivika.Trans.GPSS.Block.Leave
       (leaveBlock) where

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

-- | This is the GPSS construct
--
-- @LEAVE A,B@
leaveBlock :: MonadDES m
              => Storage m
              -- ^ the storage
              -> Int
              -- ^ the content increment
              -> Block m (Transact m a) (Transact m a)
{-# INLINABLE leaveBlock #-}
leaveBlock :: Storage m -> Int -> Block m (Transact m a) (Transact m a)
leaveBlock Storage m
r Int
increment =
  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 -> Storage m -> Int -> Process m ()
forall (m :: * -> *).
MonadDES m =>
Storage m -> Int -> Process m ()
leaveStorage Storage m
r Int
increment 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 }