Rename 'Test.DPOR.Schedule' to 'Test.DejaFu.Schedule'

This commit is contained in:
Michael Walker 2016-12-04 19:52:41 +00:00
parent db5d5cda17
commit 1fc5aa5565
6 changed files with 8 additions and 8 deletions

View File

@ -24,7 +24,7 @@ import qualified Data.Set as S
import Data.Sequence (Seq, ViewL(..), (|>)) import Data.Sequence (Seq, ViewL(..), (|>))
import qualified Data.Sequence as Sq import qualified Data.Sequence as Sq
import Test.DPOR.Schedule (Decision(..), Scheduler, decisionOf, tidOf) import Test.DejaFu.Schedule (Decision(..), Scheduler, decisionOf, tidOf)
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-- * Dynamic partial-order reduction -- * Dynamic partial-order reduction

View File

@ -67,7 +67,7 @@ import Data.List (sort, nub, intercalate)
import Data.Maybe (fromMaybe, mapMaybe) import Data.Maybe (fromMaybe, mapMaybe)
import Data.Set (Set) import Data.Set (Set)
import qualified Data.Set as S import qualified Data.Set as S
import Test.DPOR.Schedule (Decision(..)) import Test.DejaFu.Schedule (Decision(..))
import Test.DPOR.Internal (Trace) import Test.DPOR.Internal (Trace)
------------------------------------------------------------------------------- -------------------------------------------------------------------------------

View File

@ -42,7 +42,7 @@ module Test.DejaFu.Conc
, showFail , showFail
-- * Scheduling -- * Scheduling
, module Test.DPOR.Schedule , module Test.DejaFu.Schedule
) where ) where
import Control.Exception (MaskingState(..)) import Control.Exception (MaskingState(..))
@ -56,7 +56,7 @@ import Data.IORef (IORef)
import qualified Data.Map.Strict as M import qualified Data.Map.Strict as M
import Data.Maybe (fromJust) import Data.Maybe (fromJust)
import Data.STRef (STRef) import Data.STRef (STRef)
import Test.DPOR.Schedule import Test.DejaFu.Schedule
import qualified Control.Monad.Conc.Class as C import qualified Control.Monad.Conc.Class as C
import Test.DejaFu.Common import Test.DejaFu.Common

View File

@ -22,12 +22,12 @@ import Data.List (sort)
import Data.List.NonEmpty (NonEmpty(..), fromList) import Data.List.NonEmpty (NonEmpty(..), fromList)
import qualified Data.Map.Strict as M import qualified Data.Map.Strict as M
import Data.Maybe (fromJust, isJust, isNothing, listToMaybe) import Data.Maybe (fromJust, isJust, isNothing, listToMaybe)
import Test.DPOR.Schedule (Scheduler)
import Test.DejaFu.Common import Test.DejaFu.Common
import Test.DejaFu.Conc.Internal.Common import Test.DejaFu.Conc.Internal.Common
import Test.DejaFu.Conc.Internal.Memory import Test.DejaFu.Conc.Internal.Memory
import Test.DejaFu.Conc.Internal.Threading import Test.DejaFu.Conc.Internal.Threading
import Test.DejaFu.Schedule
import Test.DejaFu.STM (Result(..)) import Test.DejaFu.STM (Result(..))
{-# ANN module ("HLint: ignore Use record patterns" :: String) #-} {-# ANN module ("HLint: ignore Use record patterns" :: String) #-}

View File

@ -1,5 +1,5 @@
-- | -- |
-- Module : Test.DPOR.Schedule -- Module : Test.DejaFu.Schedule
-- Copyright : (c) 2016 Michael Walker -- Copyright : (c) 2016 Michael Walker
-- License : MIT -- License : MIT
-- Maintainer : Michael Walker <mike@barrucadu.co.uk> -- Maintainer : Michael Walker <mike@barrucadu.co.uk>
@ -7,7 +7,7 @@
-- Portability : portable -- Portability : portable
-- --
-- Scheduling for concurrent computations. -- Scheduling for concurrent computations.
module Test.DPOR.Schedule module Test.DejaFu.Schedule
( -- * Scheduling ( -- * Scheduling
Scheduler Scheduler

View File

@ -80,11 +80,11 @@ library
exposed-modules: Test.DejaFu exposed-modules: Test.DejaFu
, Test.DejaFu.Conc , Test.DejaFu.Conc
, Test.DejaFu.Common , Test.DejaFu.Common
, Test.DejaFu.Schedule
, Test.DejaFu.SCT , Test.DejaFu.SCT
, Test.DejaFu.STM , Test.DejaFu.STM
, Test.DPOR.Internal , Test.DPOR.Internal
, Test.DPOR.Schedule
, Test.DejaFu.Conc.Internal , Test.DejaFu.Conc.Internal
, Test.DejaFu.Conc.Internal.Common , Test.DejaFu.Conc.Internal.Common