hegg-0.2.0.0: src/Data/Equality/Saturation/Scheduler.hs
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE AllowAmbiguousTypes #-} -- Scheduler
{-# LANGUAGE TypeFamilies #-}
{-|
Definition of 'Scheduler' as a way to control application of rewrite rules.
The 'BackoffScheduler' is a scheduler which implements exponential rule backoff
and is used by default in 'Data.Equality.Saturation.equalitySaturation'
-}
module Data.Equality.Saturation.Scheduler
( Scheduler(..), BackoffScheduler
) where
import qualified Data.IntMap.Strict as IM
import Data.Equality.Matching
-- | A 'Scheduler' determines whether a certain rewrite rule is banned from
-- being used based on statistics it defines and collects on applied rewrite
-- rules.
class Scheduler s where
type Stat s
-- | Scheduler: update stats
updateStats :: Int -- ^ Iteration we're in
-> Int -- ^ Index of rewrite rule we're updating
-> Maybe (Stat s) -- ^ Current stat for this rewrite rule (we already got it so no point in doing a lookup again)
-> IM.IntMap (Stat s) -- ^ The current stats map
-> [Match] -- ^ The list of matches resulting from matching this rewrite rule
-> IM.IntMap (Stat s) -- ^ The updated map with new stats
-- Decide whether to apply a matched rule based on its stats and current iteration
isBanned :: Int -- ^ Iteration we're in
-> Stat s -- ^ Stats for the rewrite rule
-> Bool -- ^ Whether the rule should be applied or not
-- | A 'Scheduler' that implements exponentional rule backoff.
--
-- For each rewrite, there exists a configurable initial match limit. If a rewrite
-- search yield more than this limit, then we ban this rule for number of
-- iterations, double its limit, and double the time it will be banned next time.
--
-- This seems effective at preventing explosive rules like associativity from
-- taking an unfair amount of resources.
--
-- Originaly in [egg](https://docs.rs/egg/0.6.0/egg/struct.BackoffScheduler.html)
data BackoffScheduler
instance Scheduler BackoffScheduler where
type Stat BackoffScheduler = BoSchStat
updateStats i rw currentStat stats matches =
if total_len > threshold
then
IM.alter updateBans rw stats
else
stats
where
-- TODO: Overall difficult, and buggy at the moment.
total_len = sum (map (length . matchSubst) matches)
defaultMatchLimit = 1000
defaultBanLength = 10
bannedN = case currentStat of
Nothing -> 0;
Just (timesBanned -> n) -> n
threshold = defaultMatchLimit * (2^bannedN)
ban_length = defaultBanLength * (2^bannedN)
updateBans = \case
Nothing -> Just (BSS (i + ban_length) 1)
Just (BSS _ n) -> Just (BSS (i + ban_length) (n+1))
isBanned i s = i < bannedUntil s
data BoSchStat = BSS { bannedUntil :: {-# UNPACK #-} !Int
, timesBanned :: {-# UNPACK #-} !Int
} deriving Show