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 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

View File

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

View File

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

View File

@ -22,12 +22,12 @@ import Data.List (sort)
import Data.List.NonEmpty (NonEmpty(..), fromList)
import qualified Data.Map.Strict as M
import Data.Maybe (fromJust, isJust, isNothing, listToMaybe)
import Test.DPOR.Schedule (Scheduler)
import Test.DejaFu.Common
import Test.DejaFu.Conc.Internal.Common
import Test.DejaFu.Conc.Internal.Memory
import Test.DejaFu.Conc.Internal.Threading
import Test.DejaFu.Schedule
import Test.DejaFu.STM (Result(..))
{-# 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
-- License : MIT
-- Maintainer : Michael Walker <mike@barrucadu.co.uk>
@ -7,7 +7,7 @@
-- Portability : portable
--
-- Scheduling for concurrent computations.
module Test.DPOR.Schedule
module Test.DejaFu.Schedule
( -- * Scheduling
Scheduler

View File

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