logict-state-0.1.0.2: src/Control/Monad/LogicState/Class.hs
{-# LANGUAGE FunctionalDependencies #-}
module Control.Monad.LogicState.Class
( MonadLogicState(..)
)
where
import Control.Monad
import Control.Monad.Logic.Class (MonadLogic)
import Control.Monad.State (MonadState)
-------------------------------------------------------------------------------
-- | API for MonadLogic which allows state and backtracking on it.
class (MonadLogic m, MonadState s m) => MonadLogicState s m where
-- | Return argument monad with the current backtrackable part of the state remembered.
-- If the default def is not overridden this a no-op.
-- This function complements 'mplus' for 'LogicT', 'mplus' backtracks on results, not on state, which is what this function should do.
backtrack :: m a -> m (m a)
backtrack = return