packages feed

aivika-distributed 0.3 → 0.3.1

raw patch · 13 files changed

+16/−9 lines, 13 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Simulation/Aivika/Distributed/Optimistic/DIO.hs view
@@ -1,5 +1,5 @@ -{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances #-}+{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, OverlappingInstances #-}  -- | -- Module     : Simulation.Aivika.Distributed.Optimistic.DIO
Simulation/Aivika/Distributed/Optimistic/Internal/DIO.hs view
@@ -1,5 +1,5 @@ -{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveGeneric, DeriveDataTypeable #-}  -- | -- Module     : Simulation.Aivika.Distributed.Optimistic.Internal.DIO
Simulation/Aivika/Distributed/Optimistic/Internal/Event.hs view
@@ -1,5 +1,5 @@ -{-# LANGUAGE TypeFamilies, FlexibleInstances #-}+{-# LANGUAGE TypeFamilies, FlexibleInstances, OverlappingInstances #-}  -- | -- Module     : Simulation.Aivika.Distributed.Optimistic.Internal.Event@@ -18,7 +18,6 @@  import Data.Maybe import Data.IORef-import Data.Typeable import Data.Time.Clock  import System.Timeout
Simulation/Aivika/Distributed/Optimistic/Internal/Message.hs view
@@ -1,5 +1,5 @@ -{-# LANGUAGE RankNTypes, DeriveGeneric #-}+{-# LANGUAGE RankNTypes, DeriveGeneric, DeriveDataTypeable #-}  -- | -- Module     : Simulation.Aivika.Distributed.Optimistic.Internal.Message
Simulation/Aivika/Distributed/Optimistic/Internal/Priority.hs view
@@ -1,5 +1,5 @@ -{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveGeneric, DeriveDataTypeable #-}  -- | -- Module     : Simulation.Aivika.Distributed.Optimistic.Internal.Priority
Simulation/Aivika/Distributed/Optimistic/Internal/TimeServer.hs view
@@ -1,5 +1,5 @@ -{-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveGeneric, DeriveDataTypeable #-}  -- | -- Module     : Simulation.Aivika.Distributed.Optimistic.Internal.TimeServer
aivika-distributed.cabal view
@@ -1,5 +1,5 @@ name:            aivika-distributed-version:         0.3+version:         0.3.1 synopsis:        Parallel distributed discrete event simulation module for the Aivika library description:     This package extends the aivika-transformers [1] package with facilities for running parallel distributed simulations.@@ -71,7 +71,9 @@                      FlexibleContexts,                      TypeFamilies,                      RankNTypes,-                     DeriveGeneric+                     DeriveGeneric,+                     DeriveDataTypeable,+                     OverlappingInstances      ghc-options:     -O2 
tests/MachRep1.hs view
@@ -1,6 +1,7 @@  {--# LANGUAGE TemplateHaskell #--} {-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveDataTypeable #-}  -- It corresponds to model MachRep1 described in document  -- Introduction to Discrete-Event Simulation and the SimPy Language
tests/MachRep2.hs view
@@ -1,6 +1,7 @@  {--# LANGUAGE TemplateHaskell #--} {-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveDataTypeable #-}  -- It corresponds to model MachRep2 described in document  -- Introduction to Discrete-Event Simulation and the SimPy Language
tests/MachRep2Distributed.hs view
@@ -1,6 +1,7 @@  {-# LANGUAGE TemplateHaskell #-} {-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveDataTypeable #-}  -- It corresponds to model MachRep2 described in document  -- Introduction to Discrete-Event Simulation and the SimPy Language
tests/MachRep2Reproducible.hs view
@@ -1,6 +1,7 @@  {--# LANGUAGE TemplateHaskell #--} {-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveDataTypeable #-}  -- It corresponds to model MachRep2 described in document  -- Introduction to Discrete-Event Simulation and the SimPy Language
tests/MachRep2Sync.hs view
@@ -1,6 +1,7 @@  {--# LANGUAGE TemplateHaskell #--} {-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveDataTypeable #-}  -- It corresponds to model MachRep2 described in document  -- Introduction to Discrete-Event Simulation and the SimPy Language
tests/MachRep2SyncIO.hs view
@@ -1,6 +1,7 @@  {--# LANGUAGE TemplateHaskell #--} {-# LANGUAGE DeriveGeneric #-}+{-# LANGUAGE DeriveDataTypeable #-}  -- It corresponds to model MachRep2 described in document  -- Introduction to Discrete-Event Simulation and the SimPy Language